diff --git a/data/code.metainfo.xml.in b/data/code.metainfo.xml.in index 642178174d..d4ded035c5 100644 --- a/data/code.metainfo.xml.in +++ b/data/code.metainfo.xml.in @@ -66,7 +66,7 @@ contact_AT_elementary.io - +

Improvements:

    @@ -84,27 +84,33 @@
  • Now there is always an active project at startup if there are projects in the sidebar
  • If a development branch is running this shows in the window title and in the dock tooltip
  • Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs
  • +
  • Ensure active project at startup (include non-git folders)
  • Updated translations
+ No expander on folders that contain no text files Add whole word search + Undo-ing sometimes deletes the entire contents of a file Search occurence label does not update when active document changed + Autosave of unsaved buffers not reliable + Slow to close multiple documents + Unexpected closing on pressing Global Search accelerator with no open documents + Clicking "Find in Project…" in the welcome screen causes the app crashing + Cancelling saving does not work as expected when closing project folder resulting in data loss Saving new document to an unwritable location gives unexpected behaviour and possible data loss Symbol outline does not respect system style + "Replace All" should not disable the "Replace" and "Replace All" buttons Does not follow system color scheme when launching with no files open + Secure WebDav files opened from Files cannot save Case sensitive/insensitive search does not work as expected with mixed case search term Cannot open files with unknown characters Search results change when document focused in - Ensure active project at startup (include non-git folders) - Clicking "Find in Project…" in the welcome screen causes the app crashing - Unexpected closing on pressing Global Search accelerator with no open documents - "Replace All" should not disable the "Replace" and "Replace All" buttons - Secure WebDav files opened from Files cannot save - Cancelling saving does not work as expected when closing project folder resulting in data loss - Autosave of unsaved buffers not reliable - Cannot open files with unknown characters - No expander on folders that contain no text files + Document does not open when sidebar entry clicked if it is already focused + Git branch change can result in unwanted warnings + Search entry reverts to previous term after editing and pressing Control+f + Tab width menu does not work + Line numbers should start from one not zero
diff --git a/data/io.elementary.code.gschema.xml b/data/io.elementary.code.gschema.xml index 1794882fa9..d0bad47f8d 100644 --- a/data/io.elementary.code.gschema.xml +++ b/data/io.elementary.code.gschema.xml @@ -121,6 +121,7 @@ Whether Code should use auto indentation + 4 Tab Size Specifies the number of spaces that should be displayed instead of Tab characters. diff --git a/data/meson.build b/data/meson.build index 01a0437d81..b28891a23d 100644 --- a/data/meson.build +++ b/data/meson.build @@ -16,16 +16,16 @@ endforeach install_data([ 'styles/elementary-dark.xml', 'styles/elementary-light.xml', -], install_dir: join_paths(get_option('datadir'), 'gtksourceview-4', 'styles')) +], install_dir: get_option('datadir') / 'gtksourceview-4' / 'styles') install_data([ 'fonts/BuilderBlocks.ttf', -], install_dir: join_paths(get_option('datadir'), meson.project_name(), 'fonts')) +], install_dir: get_option('datadir') / meson.project_name() / 'fonts') install_data( 'io.elementary.code.gschema.xml', 'io.elementary.code.plugins.spell.gschema.xml', - install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0', 'schemas') + install_dir: get_option('prefix') / get_option('datadir') / 'glib-2.0' / 'schemas' ) config_data = configuration_data() @@ -47,16 +47,16 @@ desktop_in_file = configure_file( desktop_file = i18n.merge_file( input: desktop_in_file, output: 'io.elementary.code.desktop', - po_dir: join_paths(meson.source_root (), 'po', 'extra'), + po_dir: meson.project_source_root () / 'po' / 'extra', type: 'desktop', - install_dir: join_paths(get_option('datadir'), 'applications'), + install_dir: get_option('datadir') / 'applications', install: true ) i18n.merge_file( input: 'code.metainfo.xml.in', output: meson.project_name() + '.metainfo.xml', - po_dir: meson.source_root() / 'po' / 'extra', + po_dir: meson.project_source_root() / 'po' / 'extra', type: 'xml', install: true, install_dir: get_option('datadir') / 'metainfo', @@ -78,9 +78,9 @@ if get_option ('have_pkexec') i18n.merge_file( input: policy_in, output: meson.project_name() + '.policy', - po_dir: join_paths(meson.source_root (), 'po', 'extra'), + po_dir: meson.project_source_root () / 'po' / 'extra', install: true, - install_dir: join_paths(get_option('datadir'), 'polkit-1', 'actions'), + install_dir: get_option('datadir') / 'polkit-1' / 'actions', ) endif diff --git a/meson.build b/meson.build index 1d72ef89f1..57876f8ce9 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,8 @@ project( 'io.elementary.code', 'vala', 'c', - version: '7.0.0' + meson_version: '>= 0.58.0', + version: '7.1.0' ) add_project_arguments([ @@ -11,7 +12,7 @@ add_project_arguments([ ) add_project_arguments( - ['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], + ['--vapidir', meson.project_source_root() / 'vapi'], language: 'vala' ) @@ -19,8 +20,8 @@ if get_option('have_pkexec') add_project_arguments('--define=HAVE_PKEXEC', language: 'vala') endif -libexecdir = join_paths(get_option('prefix'), get_option('libexecdir'), meson.project_name()) -pluginsdir = join_paths(get_option('prefix'), get_option('libdir'), meson.project_name(), 'plugins') +libexecdir = get_option('prefix') / get_option('libexecdir') / meson.project_name() +pluginsdir = get_option('prefix') / get_option('libdir') / meson.project_name() / 'plugins' gnome = import('gnome') i18n = import('i18n') @@ -46,7 +47,7 @@ code_resources = gnome.compile_resources( ) # We need libvala-X.XX library, but it changes depending on the version that is installed -vala_version = run_command (meson.get_compiler('vala'), '--api-version').stdout().strip() +vala_version = run_command (meson.get_compiler('vala'), '--api-version', check: true).stdout().strip() vala_dep = dependency('libvala-@0@'.format(vala_version)) dependencies = [ @@ -81,4 +82,4 @@ if get_option('plugins') endif subdir('po') -meson.add_install_script('meson/post_install.py') +gnome.post_install(glib_compile_schemas: true) diff --git a/meson/post_install.py b/meson/post_install.py deleted file mode 100755 index d50b982d5d..0000000000 --- a/meson/post_install.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python3 - -import os -import subprocess - -schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') - -if not os.environ.get('DESTDIR'): - print('Compiling gsettings schemas…') - subprocess.call(['glib-compile-schemas', schemadir]) diff --git a/plugins/brackets-completion/meson.build b/plugins/brackets-completion/meson.build index e46ea62ecb..880e976202 100644 --- a/plugins/brackets-completion/meson.build +++ b/plugins/brackets-completion/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/detect-indent/meson.build b/plugins/detect-indent/meson.build index 1d345960bb..d70c52eaa3 100644 --- a/plugins/detect-indent/meson.build +++ b/plugins/detect-indent/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/editorconfig/editorconfig.vala b/plugins/editorconfig/editorconfig.vala index 79e99efb30..8a5b8f4285 100644 --- a/plugins/editorconfig/editorconfig.vala +++ b/plugins/editorconfig/editorconfig.vala @@ -32,7 +32,11 @@ public class Scratch.Plugins.EditorConfigPlugin: Peas.ExtensionBase, Peas.Activa }); plugins.hook_document.connect ((d) => { - format_bar.tab_set_by_editor_config = false; + // Ensure use global settings by default + format_bar.tab_style_set_by_editor_config = false; + format_bar.tab_width_set_by_editor_config = false; + format_bar.set_document (d); + Scratch.Widgets.SourceView view = d.source_view; File file = d.file; @@ -52,13 +56,13 @@ public class Scratch.Plugins.EditorConfigPlugin: Peas.ExtensionBase, Peas.Activa /* These are all properties (https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties) */ switch (name) { case "indent_style": - format_bar.tab_set_by_editor_config = true; + format_bar.tab_style_set_by_editor_config = true; var use_spaces = (val != "tab"); format_bar.set_insert_spaces_instead_of_tabs (use_spaces); break; case "indent_size": case "tab_width": - format_bar.tab_set_by_editor_config = true; + format_bar.tab_width_set_by_editor_config = true; var indent_width = (int.parse (val)).clamp (2, 16); format_bar.set_tab_width (indent_width); break; @@ -73,6 +77,9 @@ public class Scratch.Plugins.EditorConfigPlugin: Peas.ExtensionBase, Peas.Activa case "max_line_length": view.right_margin_position = int.parse (val); break; + default: + warning ("unrecognised name/value %s/%s", name, val); + break; } } }); diff --git a/plugins/editorconfig/meson.build b/plugins/editorconfig/meson.build index a4a8b9eb40..eabe838183 100644 --- a/plugins/editorconfig/meson.build +++ b/plugins/editorconfig/meson.build @@ -15,7 +15,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -25,10 +25,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/highlight-word-selection/highlight-word-selection.vala b/plugins/highlight-word-selection/highlight-word-selection.vala index 0d0ba9ec52..c14fe243b9 100644 --- a/plugins/highlight-word-selection/highlight-word-selection.vala +++ b/plugins/highlight-word-selection/highlight-word-selection.vala @@ -20,7 +20,8 @@ public class Scratch.Plugins.HighlightSelectedWords : Peas.ExtensionBase, Peas.Activatable { Scratch.Widgets.SourceView current_source; - Gtk.SourceSearchContext current_search_context; + Scratch.MainWindow? main_window = null; + Gtk.SourceSearchContext? current_search_context = null; // Consts // Pneumonoultramicroscopicsilicovolcanoconiosis longest word in a major dictionary @ 45 @@ -43,33 +44,50 @@ public class Scratch.Plugins.HighlightSelectedWords : Peas.ExtensionBase, Peas.A current_source.deselected.connect (on_deselection); current_source.selection_changed.connect (on_selection_changed); }); + + plugins.hook_window.connect ((w) => { + main_window = w; + }); } public void on_selection_changed (ref Gtk.TextIter start, ref Gtk.TextIter end) { - if (!start.equal (end)) { - // Expand highlight to current word - if (!start.starts_word ()) { - start.backward_word_start (); - } - - if (!end.ends_word ()) { - end.forward_word_end (); + var window_search_context = main_window != null ? main_window.search_bar.search_context : null; + if (window_search_context == null || + window_search_context.settings.search_text == "" || + window_search_context.get_occurrences_count () == 0) { + + if (!start.equal (end)) { + // Expand highlight to current word + if (!start.starts_word ()) { + start.backward_word_start (); + } + + if (!end.ends_word ()) { + end.forward_word_end (); + } + + string selected_text = start.get_buffer ().get_text (start, end, false); + if (selected_text.char_count () > SELECTION_HIGHLIGHT_MAX_CHARS) { + return; + } + + current_search_context = new Gtk.SourceSearchContext ((Gtk.SourceBuffer)current_source.buffer, null); + current_search_context.settings.search_text = selected_text; + // Honor current search settings (to be confirmed) + if (window_search_context != null ) { + current_search_context.settings.case_sensitive = window_search_context.settings.case_sensitive; + } } - - string selected_text = start.get_buffer ().get_text (start, end, false); - if (selected_text.char_count () > SELECTION_HIGHLIGHT_MAX_CHARS) { - return; - } - - current_search_context = new Gtk.SourceSearchContext ((Gtk.SourceBuffer)current_source.buffer, null); - current_search_context.settings.search_text = selected_text; - current_search_context.set_highlight (true); + } else if (current_search_context != null) { + current_search_context.set_highlight (false); + current_search_context = null; } } public void on_deselection () { if (current_search_context != null) { - current_search_context.settings.search_text = null; + current_search_context.set_highlight (false); + current_search_context = null; } } diff --git a/plugins/highlight-word-selection/meson.build b/plugins/highlight-word-selection/meson.build index aaa960adaa..393f197b2f 100644 --- a/plugins/highlight-word-selection/meson.build +++ b/plugins/highlight-word-selection/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/markdown-actions/meson.build b/plugins/markdown-actions/meson.build index d8d15aad3d..529dd12128 100644 --- a/plugins/markdown-actions/meson.build +++ b/plugins/markdown-actions/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/pastebin/meson.build b/plugins/pastebin/meson.build index faacc10b60..f18e644d41 100644 --- a/plugins/pastebin/meson.build +++ b/plugins/pastebin/meson.build @@ -17,7 +17,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -27,10 +27,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/preserve-indent/meson.build b/plugins/preserve-indent/meson.build index db9b35eb85..bd9c5596bd 100644 --- a/plugins/preserve-indent/meson.build +++ b/plugins/preserve-indent/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/spell/meson.build b/plugins/spell/meson.build index 15bd141f10..6d64af66be 100644 --- a/plugins/spell/meson.build +++ b/plugins/spell/meson.build @@ -16,7 +16,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -26,10 +26,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/vim-emulation/meson.build b/plugins/vim-emulation/meson.build index c32e5a8d1c..6017f329d5 100644 --- a/plugins/vim-emulation/meson.build +++ b/plugins/vim-emulation/meson.build @@ -13,7 +13,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -23,10 +23,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/plugins/word-completion/meson.build b/plugins/word-completion/meson.build index 2887aef312..247b0e60ad 100644 --- a/plugins/word-completion/meson.build +++ b/plugins/word-completion/meson.build @@ -16,7 +16,7 @@ shared_module( module_files, dependencies: module_deps, install: true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) custom_target(module_name + '.plugin_merge', @@ -26,10 +26,10 @@ custom_target(module_name + '.plugin_merge', '--desktop', '--keyword=Description', '--keyword=Name', - '-d' + join_paths(meson.source_root (), 'po', 'plugins'), + '-d' + meson.project_source_root () / 'po' / 'plugins', '--template=@INPUT@', '-o@OUTPUT@', ], install : true, - install_dir: join_paths(pluginsdir, module_name), + install_dir: pluginsdir / module_name, ) diff --git a/po/aa.po b/po/aa.po index ac0da0a426..9a3c6c930e 100644 --- a/po/aa.po +++ b/po/aa.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ab.po b/po/ab.po index ac0da0a426..9a3c6c930e 100644 --- a/po/ab.po +++ b/po/ab.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ae.po b/po/ae.po index 721fb43f6c..0660a1f871 100644 --- a/po/ae.po +++ b/po/ae.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,39 +56,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -337,131 +337,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -488,55 +508,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -611,80 +631,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/af.po b/po/af.po index 6c85e38356..c1df44f0cf 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2017-04-09 21:07+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Afrikaans \n" @@ -71,39 +71,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Alle lêers" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Teks lêers" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Kanselleer" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -356,143 +356,165 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Kanselleer" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Stoor wysigings voor dokument %s toegemaak word" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Maak toe sonder om te stoor" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Stoor" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Stoor wysigings voor dokument %s toegemaak word" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Stoor lêer" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Nuwe dokument" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "Die \"%s\" lêer kan nie gelees word nie. Dalk is dit korrup" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "Die plek wat die \"%s\" lêer bevat is ontkoppel. Wil jy op 'n ander plek " "stoor?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "Die \"%s\" lêer was verwyder. Wil jy dit in elk geval stoor?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "Die \"%s\" lêer was verwyder. Wil jy dit in elk geval stoor?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Oplaai" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Oplaai" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save changes elsewhere" +msgid "Save Document elsewhere" +msgstr "Stoor wysigings op 'n ander plek" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -519,60 +541,60 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Teks lêers" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "Wys lyn nommers" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Automatiese inkeping" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Inkeping Wydte" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -648,80 +670,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Nooit" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Vervang" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -853,11 +875,6 @@ msgstr "" #~ "Jy kan nie wysigings op die \"%s\" lêer stoor nie. Wil jy die wysigings " #~ "in die lêer op 'n ander plek stoor?" -#, fuzzy -#~| msgid "Save changes elsewhere" -#~ msgid "Save the document elsewhere" -#~ msgstr "Stoor wysigings op 'n ander plek" - #~ msgid "Terminal" #~ msgstr "Terminaal" diff --git a/po/ak.po b/po/ak.po index e55105289f..2e4bda4779 100644 --- a/po/ak.po +++ b/po/ak.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2017-04-09 20:11+0000\n" "Last-Translator: aberba \n" "Language-Team: LANGUAGE \n" @@ -66,39 +66,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Gyae" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -354,148 +354,174 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Gyae" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Wopɛ sɛ wo kora %s to hɔ ansa wadum no anaa?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Sɛ wo ankora anto hɔ a, wo bɛ hwere nsesayɛ a waya no animmoho 4 a atwam no " "koraa." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Dum no. Mempɛ sɛ wo kora no" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Kora" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Wopɛ sɛ wo kora %s to hɔ ansa wadum no anaa?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Kora file no" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Document Foforɔ" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "File %s antumi ambue. Ebia na asɛe anaa wo nni ho kwan sɛ wo bue." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "Bɛbi a file %s wɔ no nnya mmounte yɛ. Wopɛ sɛ wo kora no baabi fofor anaa?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." -msgstr "File %s nni akoraɛ biara mu. Wo pɛ sɛ wo kora to hɔ anna?" +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Dwumadi foforɔ ayɛ nsesaɛ wɔ %s mu. Wopɛ sɛ wo hwɛ nsesaɛ no ansa na wakora " +"no bio anaa?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "File %s nni akoraɛ biara mu. Wo pɛ sɛ wo kora to hɔ anna?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "Dwumadi foforɔ ayɛ nsesaɛ wɔ %s mu. Wopɛ sɛ wo hwɛ nsesaɛ no ansa na wakora " "no bio anaa?" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Toa so" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Toa so" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save changes elsewhere" +msgid "Save Document elsewhere" +msgstr "Kora to baabi fororɔ" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -522,55 +548,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Yɛ ntwerɛe foforɔ firi " -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Ma ntwereɛ no Kola" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Kɔ line:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -646,80 +672,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Hwehwɛ" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Fa wei sesa no" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Si ananmu" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Sesa ne nyinaa" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -828,6 +854,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "" +#, fuzzy, c-format +#~| msgid "File \"%s\" was deleted. Do you want to save it anyway?" +#~ msgid "File “%s” was deleted." +#~ msgstr "File %s nni akoraɛ biara mu. Wo pɛ sɛ wo kora to hɔ anna?" + #~ msgid "Set of plugins" #~ msgstr "Plugins Ahoroɔ" @@ -853,11 +884,6 @@ msgstr "" #~ "somewhere else?" #~ msgstr "File %s ntumi nkora wɔ ɛha. Wopɛ sɛ wo kora to babi foforo anaa?" -#, fuzzy -#~| msgid "Save changes elsewhere" -#~ msgid "Save the document elsewhere" -#~ msgstr "Kora to baabi fororɔ" - #, fuzzy #~ msgid "Open Project Folder…" #~ msgstr "Bue file" diff --git a/po/am.po b/po/am.po index 32aabb593a..02744e0e16 100644 --- a/po/am.po +++ b/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-21 13:39+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Amharic \n" @@ -77,39 +77,39 @@ msgstr "ምልክቶች" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "ሁሉንም ፋይሎች" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "የጽሁፍ ፋይሎች" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "አንዳንድ ፋይሎች መክፈቻ" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "መክፈቻ" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "መሰረዣ" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_መክፈቻ" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_መሰረዣ" @@ -375,135 +375,157 @@ msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ" msgid "Branch" msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "መሰረዣ" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "ሳያስቀምጡ መዝጊያ" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "ማስቀመጫ" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "ፋይል ማስቀመጫ" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "አዲስ ሰነድ" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "መጫኛ" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "ይቀጥሉ" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "ይቀጥሉ" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "መጫኛ" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "የአሁኑን ፋይል ማስቀመጫ" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "ቴምፕሌትስ" @@ -532,60 +554,60 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "የጽሁፍ ፋይሎች" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "የ መስመር ቁጥር ማሳያ:" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "ራሱ በራሱ ማስረጊያ:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "የ ንዑስ መስኮት ስፋት:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "ወደ መስመር መሄጃ :" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -663,82 +685,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "መፈለጊያ" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "በፍጹም" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Next Search" msgid "Search Options" msgstr "የሚቀጥለው መፈለጊያ" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "መተኪያ በ" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "መቀየሪያ" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "ኩሉንም መቀየሪያ" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -863,11 +885,6 @@ msgstr "" #~ msgid "Load" #~ msgstr "መጫኛ" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "የአሁኑን ፋይል ማስቀመጫ" - #~ msgid "Save changes elsewhere" #~ msgstr "ለውጦቹን ሌላ ቦታ ማስቀመጫ" diff --git a/po/an.po b/po/an.po index b162527ec4..60134dd403 100644 --- a/po/an.po +++ b/po/an.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-21 13:36+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -346,133 +346,153 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Alzar os camios de o decumento dinantes de trancar" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "Si no alzas, os camios d´os 4 segundos zaguers se ´n trafegueran" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Trancar sin alzar" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Alzar os camios de o decumento dinantes de trancar" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Nueu Decumento" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -499,55 +519,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -622,80 +642,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ar.po b/po/ar.po index 91f0abf251..2a5b1948de 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2021-09-06 18:12+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" @@ -80,39 +80,39 @@ msgstr "ازالة الاماكن الوهمية المنشأة من قبل ( va #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "كل الملفات" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "ملفات نصية" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "فتح بعض الملفات" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "إفتح" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "الغاء" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_فتح" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_الغاء" @@ -383,151 +383,177 @@ msgstr "تفرع" msgid "Branch" msgstr "تفرع" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s ليس بملف نصي" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "الشيفرة البرمجية لن يحمل نوع الملفات هذا." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "حمل على أي حال" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, fuzzy, c-format #| msgid "Loading File \"%s\" Is Taking a Long Time" msgid "Loading File “%s” Is Taking a Long Time" msgstr "جاري العمل على الملف “%s” قد يستغرق بعض الوقت" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "الرجاء الانتظار بينما الشيفرة البرمجية يقوم بتحميل الملف." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "الغاء التحميل" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Save changes to “%s” before closing?" msgstr "حفظ التغيرات الخاصة بـ “%s” قبل اﻹغلاق؟" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "إن لم تحفظ فستختفى نهائيا جميع التغيرات." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "اغلق بدون حفظ" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "إحفظ" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Saving to “%s” failed." msgstr "حفظ التغيرات الخاصة بـ “%s” قبل اﻹغلاق؟" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "حفظ الملف" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "مُستند جديد" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, fuzzy, c-format #| msgid "Search for text in “%s”" msgid "Cannot read text in file “%s”" msgstr "بحث عن نص في ”%s“" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy #| msgid "It may be corrupt or you don't have permission to read it." msgid "You may not have permission to read the file." msgstr "قد يكون تالفا أو أنك ليس لديك الصلاحيات لقراءته." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 #, fuzzy #| msgid "Load Anyway" msgid "Show Anyway" msgstr "حمل على أي حال" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "المكان يحتوي على الملف “%s” ولم يكن مركبا. هل تريد حفظه فيه مكان آخر؟" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." -msgstr "الملف “%s” قد تم حذفه. هل تريد حفظه على اية حال؟" +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"الملف “%s” قد تم تعديله من طرف خارجي. هل تريد إعادة تحميله أم تريد اكمال " +"التعديل عليه؟" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "الملف “%s” قد تم حذفه. هل تريد حفظه على اية حال؟" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "الملف “%s” قد تم تعديله من طرف خارجي. هل تريد إعادة تحميله أم تريد اكمال " "التعديل عليه؟" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "رفع" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "استمرار" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "استمرار" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "رفع" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "إحفظ الملف الحالى" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "القوالب" @@ -556,54 +582,54 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "ملف نصي من %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "إبراز تراكيب الجمله" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "إعرض رقم السطر" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "ترشيح اللغات" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "نص بسيط" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "التعرف التلقائي على المسافات الفارغة:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "ادخل مسافات بدلا من tabs:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "عرض التبويب:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "إذهب الى السطر :" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" @@ -614,7 +640,7 @@ msgstr[3] "%d مسافات" msgstr[4] "%d مسافات" msgstr[5] "%d مسافات" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -695,84 +721,84 @@ msgstr "ترتيب بالأبجدية" msgid "Manage project folders" msgstr "إدارة مجلدات المشروع" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "بحث" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "البحث عن التالي" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "البحث عن السابق" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "دورة البحث" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "أبداً" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "دائما" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "حساسة لحالة الأحرف (يهم إذا الأحرف كبيرة أو صغيرة)" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 #, fuzzy #| msgid "Use regular expressions:" msgid "Use Regular Expressions" msgstr "استخدام التعابير النمطية:" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "البحث عن السابق" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "استبدل بـ" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "إستبدال" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "استبدال الكل" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "رتب الأسطر التي تم اختيارها" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "تحويل لتعليق" @@ -882,6 +908,11 @@ msgstr "رجاءً قم بتثبيت قاموس [aspell] واحد على الأ msgid "%s - Word Completion" msgstr "اتمام %s من الكلمات" +#, fuzzy, c-format +#~| msgid "File \"%s\" was deleted. Do you want to save it anyway?" +#~ msgid "File “%s” was deleted." +#~ msgstr "الملف “%s” قد تم حذفه. هل تريد حفظه على اية حال؟" + #~ msgid "Set of plugins" #~ msgstr "مجموعة من الاضافات" @@ -912,11 +943,6 @@ msgstr "اتمام %s من الكلمات" #~ "somewhere else?" #~ msgstr "لا يمكنك التغيير على الملف “%s”. هل تريد حفظ التغييرات في مكان آخر؟" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "إحفظ الملف الحالى" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "الملف \"%s\" لا يمكن قراءته" diff --git a/po/as.po b/po/as.po index acd641b943..c189ddecec 100644 --- a/po/as.po +++ b/po/as.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ast.po b/po/ast.po index acd641b943..c189ddecec 100644 --- a/po/ast.po +++ b/po/ast.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/av.po b/po/av.po index acd641b943..c189ddecec 100644 --- a/po/av.po +++ b/po/av.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ay.po b/po/ay.po index acd641b943..c189ddecec 100644 --- a/po/ay.po +++ b/po/ay.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/az.po b/po/az.po index 2aae842b66..e34017d448 100644 --- a/po/az.po +++ b/po/az.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2023-03-17 16:03+0000\n" "Last-Translator: David Hewitt \n" "Language-Team: Azerbaijani \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/be.po b/po/be.po index ebb3e56380..b51512cc38 100644 --- a/po/be.po +++ b/po/be.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2016-03-03 17:53+0000\n" "Last-Translator: Dmitry Taranovich \n" "Language-Team: LANGUAGE \n" @@ -72,39 +72,39 @@ msgstr "Сімвалы" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Усе файлы" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Тэкставыя файлы" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Адкрыць некалькі файлаў" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Адкрыць" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Скасаваць" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Адкрыць" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Адмяніць" @@ -374,150 +374,176 @@ msgstr "Змяніць параметры Scratch" msgid "Branch" msgstr "Змяніць параметры Scratch" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Скасаваць" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Захаваць змены ў дакуменце %s перад закрыццём?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Калі вы не захаваеце, змены за апошнія 4 секунды будуць назаўсёды страчаны." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Закрыць не захоўваючы" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Захаваць" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Захаваць змены ў дакуменце %s перад закрыццём?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Захаваць файл" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Новы дакумент" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "" "Немагчыма прачытаць файл \"%s\". Магчыма, ён сапсаваны альбо Вы не маеце " "патрэбных прывілеяў, каб яго прачытаць." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "Месца з файлам \"%s\" адмацавана. Жадаеце захаваць у іншым месцы?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." -msgstr "Файл \"%s\" быў выдалены. Захаваць усё роўна?" +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Файл \"%s\" быў зменены знешнім прыкладаннем. Загрузіць яго зноў ці " +"працягнуць рэдагаванне?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "Файл \"%s\" быў выдалены. Захаваць усё роўна?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "Файл \"%s\" быў зменены знешнім прыкладаннем. Загрузіць яго зноў ці " "працягнуць рэдагаванне?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Загрузіць" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Працягваць" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Працягваць" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Загрузіць" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save changes elsewhere" +msgid "Save Document elsewhere" +msgstr "Захаваць змены ў іншым месцы" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Шаблоны" @@ -546,62 +572,62 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Тэкставы файл з " -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Падсветка сінтаксісу" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "Паказваць нумар радку:" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Аўтаматычнае структураванне:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Устаўляць прабелы замест табуляцый:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Шырыня ўкладкі:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Перайсці да радку:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -679,82 +705,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Знайсці" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Шукаць далей" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Шукаць раней" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Цыклічны пошук" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Ніколі" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Шукаць раней" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Замяніць на" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Замяніць" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Замяніць усё" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -868,6 +894,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - Дапаўненне слоў" +#, fuzzy, c-format +#~| msgid "File \"%s\" was deleted. Do you want to save it anyway?" +#~ msgid "File “%s” was deleted." +#~ msgstr "Файл \"%s\" быў выдалены. Захаваць усё роўна?" + #~ msgid "Set of plugins" #~ msgstr "Набор надбудоў" @@ -897,11 +928,6 @@ msgstr "%s - Дапаўненне слоў" #~ "Вы не можаце захаваць змены ў файле \"%s\". Жадаеце захаваць змены гэтага " #~ "файла дзе-небудзь яшчэ?" -#, fuzzy -#~| msgid "Save changes elsewhere" -#~ msgid "Save the document elsewhere" -#~ msgstr "Захаваць змены ў іншым месцы" - #, fuzzy #~| msgid "Open a folder" #~ msgid "Open Project Folder…" diff --git a/po/bg.po b/po/bg.po index 9e3b6dae3a..ebcbc06f1d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Cleiton Floss \n" "Language-Team: Bulgarian \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/bi.po b/po/bi.po index acd641b943..c189ddecec 100644 --- a/po/bi.po +++ b/po/bi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/bm.po b/po/bm.po index acd641b943..c189ddecec 100644 --- a/po/bm.po +++ b/po/bm.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/bn.po b/po/bn.po index 913df85b74..6423519b4d 100644 --- a/po/bn.po +++ b/po/bn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2017-01-21 09:06+0000\n" "Last-Translator: Hasan Sumon \n" "Language-Team: LANGUAGE \n" @@ -72,39 +72,39 @@ msgstr "চিহ্নসমূহ" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "সব ফাইল" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "টেক্সট ফাইলসমূহ" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "কিছু ফাইল খুলুন" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "খুলুন" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "বাতিল করুন" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_খুলুন" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_বাতিল" @@ -374,153 +374,179 @@ msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন msgid "Branch" msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "বাতিল করুন" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "বন্ধ করার আগে ডকুমেন্টে %s সংরক্ষণ করতে চান?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "যদি আপনি সংরক্ষণ না করেন, তাহলে গত ৪ সেকেন্ডের পরিবর্তনগুলো স্থায়ীভাবে হারিয়ে " "যাবে।" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "সংরক্ষণ না করে বন্ধ করুন" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "সংরক্ষণ করুন" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "বন্ধ করার আগে ডকুমেন্টে %s সংরক্ষণ করতে চান?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "ফাইল সংরক্ষণ করুন" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "নতুন ডকুমেন্ট" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "" "\"%s\" ফাইলটি নির্ণয় করে যাচ্ছেনা। হয়ত এটি নষ্ট\n" "অথবা আপনার প্রয়োজনীয় অনুমতি নেই।" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "\"%s\" ফাইলটি যে অবস্থা এ ছিল সে লোকেশানটি সরিয়ে নেয়া হয়েছে। আপনি কী অন্য " "কোথায় সংরক্ষণ করতে চান?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." -msgstr "\"%s\" ফাইলটি মুছে দেওয়া হয়েছিলো। যাই হোক আপনি কি এটি সংরক্ষণ করতে চান?" +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"\"%s\" ফাইলটি একটি এক্সটার্নাল এপ্লিকেশান কর্তৃক পরিবর্তিত হয়েছে। আপনি কী ফাইলটিকে " +"পুনরায় লোড করে সম্পাদনা চালিয়ে যেতে চান?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "\"%s\" ফাইলটি মুছে দেওয়া হয়েছিলো। যাই হোক আপনি কি এটি সংরক্ষণ করতে চান?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "\"%s\" ফাইলটি একটি এক্সটার্নাল এপ্লিকেশান কর্তৃক পরিবর্তিত হয়েছে। আপনি কী ফাইলটিকে " "পুনরায় লোড করে সম্পাদনা চালিয়ে যেতে চান?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "আপলোড" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "পরবর্তী" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "পরবর্তী" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "আপলোড" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save changes elsewhere" +msgid "Save Document elsewhere" +msgstr "পরিবর্তনগুলো অন্য কোথাও সংরক্ষণ করুন" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "টেমপ্লেট" @@ -549,62 +575,62 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "টেক্সট ফাইল এখান থেকে " -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "বাক্যরীতি হাইলাইট করা" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "লাইন নাম্বার দেখানঃ" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "স্বয়ংক্রিয় ইনডেন্টেশানঃ" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "ট্যাব এর বদলে স্পেস ব্যবহার করুনঃ" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "ট্যাব এর প্রস্থঃ" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "লাইন এ যানঃ" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, fuzzy, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "ফাঁকা স্থান বসানঃ" msgstr[1] "ফাঁকা স্থান বসানঃ" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -682,82 +708,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "খুঁজুন" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "পরবর্তী খুঁজুন" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "পূর্ববর্তী খুঁজুন" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "সাইক্লিক অনুসন্ধান" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "কখনো নয়" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "পূর্ববর্তী খুঁজুন" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "প্রতিস্থাপক শব্দ/শব্দগুচ্ছ" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "প্রতিস্থাপন" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "সব প্রতিস্থাপন করুন" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -873,6 +899,12 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - শব্দ পরিপূরণ" +#, fuzzy, c-format +#~| msgid "File \"%s\" was deleted. Do you want to save it anyway?" +#~ msgid "File “%s” was deleted." +#~ msgstr "" +#~ "\"%s\" ফাইলটি মুছে দেওয়া হয়েছিলো। যাই হোক আপনি কি এটি সংরক্ষণ করতে চান?" + #~ msgid "Set of plugins" #~ msgstr "প্লাগিন এর সেট" @@ -902,11 +934,6 @@ msgstr "%s - শব্দ পরিপূরণ" #~ "আপনি \"%s\" ফাইলটিতে সংরক্ষণ করতে পারবেননা। এই ফাইলের পরিবর্তনগুলো আরেকটি " #~ "লোকেশনে সংরক্ষণ করতে চান?" -#, fuzzy -#~| msgid "Save changes elsewhere" -#~ msgid "Save the document elsewhere" -#~ msgstr "পরিবর্তনগুলো অন্য কোথাও সংরক্ষণ করুন" - #, fuzzy, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "" diff --git a/po/bo.po b/po/bo.po index cf875e4ce8..f33ed4fa23 100644 --- a/po/bo.po +++ b/po/bo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2019-08-29 15:22+0000\n" "Last-Translator: གངས་རྒྱན། \n" "Language-Team: Tibetan \n" @@ -66,39 +66,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -344,131 +344,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -495,55 +515,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -618,80 +638,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/br.po b/po/br.po index acd641b943..c189ddecec 100644 --- a/po/br.po +++ b/po/br.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/bs.po b/po/bs.po index 8199e5534e..afd261a915 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-11-05 00:09+0000\n" "Last-Translator: Elvis Mujanović \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -70,39 +70,39 @@ msgstr "Mostra el contorn del símbol" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "%s - %s" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Tots els fitxers" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Fitxers de text" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Obriu alguns fitxers" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Obre" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Cancel·la" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Obre" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Cancel·la" @@ -357,132 +357,156 @@ msgstr "Branca nova…" msgid "Branch" msgstr "Branca" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s no és un fitxer de text" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "El Codi no carregarà aquest tipus de fitxer." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Carrega'l tanmateix" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "La càrrega del fitxer %s està trigant molt." -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Si us plau, espereu mentre el Codi carrega el fitxer." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Cancel·la la càrrega" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "Voleu desar els canvis fets a %s abans de tancar-lo?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "Si no deseu el document, els canvis es perdran permanentment." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Tanca'l sense desar-lo" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Desa" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "No s'ha pogut desar a %s." -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Desa el fitxer" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Document nou" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "No es pot desar aquest document a %s" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "No es pot llegir el text del fitxer %s" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "És possible que no tingueu permís per llegir el fitxer." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "El fitxer pot estar malmès o pot no ser un fitxer de text." #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "Mostra'l tanmateix" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." -msgstr "La ubicació que conté el fitxer %s s'ha desmuntat." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." +msgstr "" +"La ubicació que conté el fitxer %s s'ha desmuntat i hi ha canvis no desats." -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." -msgstr "S'ha suprimit el fitxer %s." +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "S'ha suprimit el fitxer %s i hi ha canvis no desats." #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "El fitxer %s no té permís d'escriptura." -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "El fitxer %s ha estat modificat per una aplicació externa." -#: src/Services/Document.vala:912 -msgid "Reload" -msgstr "Torna a carregar" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" +"També hi ha canvis no desats. Si torneu a carregar el document, se " +"sobreescriuran els canvis no desats." -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Continua" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" +"El document ha canviat externament des de l'última vegada que el vau desar." -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" "“%s” no es pot desar aquí. En voleu deseu un duplicat en un altre lloc?" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "Ignora-ho" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "Desa'n un duplicat…" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Continua" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "Torna a carregar" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "Sobreescriu" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "Desa el document en un altre lloc" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Plantilles" @@ -509,55 +533,55 @@ msgstr "Projecte de Git actiu: %s" msgid "Filter projects" msgstr "Filtra els projectes" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Fitxer de text de %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Realçat de sintaxi" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Número de línia" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Filtra llenguatges" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Text pla" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "Alguns paràmetres establerts pel fitxer EditorConfig" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "Sagnat automàtic" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "Insereix espais en comptes de tabulacions" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "Amplada de la tabulació" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Ves a la línia:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d espai" msgstr[1] "%d espais" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -632,80 +656,80 @@ msgstr "Per ordre alfabètic" msgid "Manage project folders" msgstr "Gestioneu les carpetes de projectes" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Cerca" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "Sense resultats" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Cerca el següent" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Cerca l'anterior" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Cerca cíclica" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Mai" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "Majúscules i minúscules" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Sempre" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Distinció de majúscules" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "Usa expressions regulars" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "Coincidència de paraules senceres" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "Opcions de la cerca" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Reemplaça amb" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Reemplaça" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Reemplaça-ho tot" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "%d de %d" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "sense resultats" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Classifica les línies seleccionades" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Commuta el comentari" @@ -811,6 +835,10 @@ msgstr "Si us plau, instal·leu com a mínim un diccionari (aspell)." msgid "%s - Word Completion" msgstr "%s - Compleció de paraules" +#, c-format +#~ msgid "File “%s” was deleted." +#~ msgstr "S'ha suprimit el fitxer %s." + #~ msgid "Set of plugins" #~ msgstr "Conjunt de connectors" @@ -838,9 +866,6 @@ msgstr "%s - Compleció de paraules" #~ "No podeu desar els canvis al fitxer %s. Voleu desar els canvis en un " #~ "altre lloc?" -#~ msgid "Save the document elsewhere" -#~ msgstr "Desa el document en un altre lloc" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "No es pot llegir el fitxer \"%s\"." diff --git a/po/ca@valencia.po b/po/ca@valencia.po index 1ad4517d6d..c40e0453d2 100644 --- a/po/ca@valencia.po +++ b/po/ca@valencia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2017-05-15 08:22+0000\n" "Last-Translator: Guillem Servera \n" "Language-Team: Catalan \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -346,131 +346,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -497,55 +517,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -620,80 +640,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ch.po b/po/ch.po index acd641b943..c189ddecec 100644 --- a/po/ch.po +++ b/po/ch.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ckb.po b/po/ckb.po index 5880c34e9d..8201efb6a6 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2022-07-31 11:42+0000\n" "Last-Translator: Aga Ismael \n" "Language-Team: Kurdish (Central) \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/cr.po b/po/cr.po index acd641b943..c189ddecec 100644 --- a/po/cr.po +++ b/po/cr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/cs.po b/po/cs.po index 244f64f896..cd5ffc83b8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" -"PO-Revision-Date: 2022-03-02 13:56+0000\n" -"Last-Translator: p-bo \n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" +"PO-Revision-Date: 2023-07-19 08:07+0000\n" +"Last-Translator: Jakub Kyzr \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.17\n" "X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n" #: src/Application.vala:37 @@ -36,10 +36,9 @@ msgid "[FILE…]" msgstr "[SOUBOR…]" #: src/MainWindow.vala:207 -#, fuzzy, c-format -#| msgid "Code" +#, c-format msgid "Code (%s)" -msgstr "Code" +msgstr "Code (%s)" #: src/MainWindow.vala:209 msgid "Code" @@ -50,68 +49,60 @@ msgid "Hide search bar" msgstr "Skrýt vyhledávací panel" #: src/MainWindow.vala:326 src/Widgets/HeaderBar.vala:121 -#, fuzzy -#| msgid "Find in Project…" msgid "Find on Page…" -msgstr "Vyhledat projekt…" +msgstr "Najít na stránce…" #: src/MainWindow.vala:337 -#, fuzzy -#| msgid "Hide search bar" msgid "Hide Projects Sidebar" -msgstr "Skrýt vyhledávací panel" +msgstr "Skrýt panel projektů" #: src/MainWindow.vala:342 -#, fuzzy -#| msgid "Show Preview" msgid "Show Projects Sidebar" -msgstr "Zobrazit náhled" +msgstr "Zobrazit panel projektů" #: src/MainWindow.vala:351 msgid "Hide Symbol Outline" -msgstr "" +msgstr "Skrýt přehled symbolů" #: src/MainWindow.vala:356 -#, fuzzy -#| msgid "No Symbols Found" msgid "Show Symbol Outline" -msgstr "Nenalezeny žádné symboly" +msgstr "Zobrazit přehled symbolů" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" -msgstr "" +msgstr "%s - %s" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Všechny soubory" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Textové soubory" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Otevřít nějaké soubory" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Otevřít" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Zrušit" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Otevřít" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Zrušit" @@ -188,10 +179,8 @@ msgid "Insert spaces instead of tabs:" msgstr "Vkládat mezery místo tabulátorů:" #: src/Dialogs/PreferencesDialog.vala:66 -#, fuzzy -#| msgid "Strip trailing whitespace on save" msgid "Strip trailing whitespace:" -msgstr "Odstraňovat koncové mezery při uložení" +msgstr "Odstraňovat koncové mezery:" #: src/Dialogs/PreferencesDialog.vala:68 msgid "Tab width:" @@ -327,26 +316,25 @@ msgstr "Zavřít ostatní složky" #, c-format msgid "Close %u Open Document" msgid_plural "Close %u Open Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Zavřít %u otevřený dokument" +msgstr[1] "Zavřít %u otevřené dokumenty" +msgstr[2] "Zavřít %u otevřených dokumentů" #: src/FolderManager/ProjectFolderItem.vala:135 -#, fuzzy, c-format -#| msgid "New Document" +#, c-format msgid "Hide %u Open Document" msgid_plural "Hide %u Open Documents" -msgstr[0] "Nový dokument" -msgstr[1] "Nový dokument" -msgstr[2] "Nový dokument" +msgstr[0] "Skrýt %u otevřený dokument" +msgstr[1] "Skrýt %u otevřené dokumenty" +msgstr[2] "Skrýt %u otevřených dokumentů" #: src/FolderManager/ProjectFolderItem.vala:150 #, c-format msgid "Restore %u Hidden Document" msgid_plural "Restore %u Hidden Documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Obnovit %u skrytý dokument" +msgstr[1] "Obnovit %u skryté dokumenty" +msgstr[2] "Obnovit %u skrytých dokumentů" #: src/FolderManager/ProjectFolderItem.vala:170 src/Widgets/HeaderBar.vala:130 msgid "Find in Project…" @@ -369,151 +357,153 @@ msgstr "Nová větev…" msgid "Branch" msgstr "Větev" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s není textový soubor" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Code nenačte tento typ souboru." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Přesto načíst" -#: src/Services/Document.vala:329 -#, fuzzy, c-format -#| msgid "Loading File \"%s\" Is Taking a Long Time" +#: src/Services/Document.vala:341 +#, c-format msgid "Loading File “%s” Is Taking a Long Time" -msgstr "Načítání souboru \"%s\" trvá hodně dlouho" +msgstr "Načítání souboru „%s“ trvá hodně dlouho" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Prosím počkejte, než Code načte soubor." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Zrušit načítání" -#: src/Services/Document.vala:429 -#, fuzzy, c-format -#| msgid "Save changes to \"%s\" before closing?" +#: src/Services/Document.vala:431 +#, c-format msgid "Save changes to “%s” before closing?" msgstr "Uložit před ukončením změny do „%s“?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "Pokud neuložíte, změny budou nenávratně ztraceny." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Zavřít bez uložení" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Uložit" -#: src/Services/Document.vala:555 -#, fuzzy, c-format -#| msgid "Save changes to \"%s\" before closing?" +#: src/Services/Document.vala:567 +#, c-format msgid "Saving to “%s” failed." -msgstr "Uložit před ukončením změny do „%s“?" +msgstr "Ukládání do „%s“ selhalo." -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Uložit soubor" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Nový dokument" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" -msgstr "" +msgstr "Nelze uložit tento dokument do %s" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 -#, fuzzy, c-format -#| msgid "Search for text in “%s”" +#: src/Services/Document.vala:778 +#, c-format msgid "Cannot read text in file “%s”" -msgstr "Vyhledat text v „%s“" +msgstr "Nelze načíst text ze souboru „%s“" -#: src/Services/Document.vala:826 -#, fuzzy -#| msgid "It may be corrupt or you don't have permission to read it." +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." -msgstr "Může být poškozený, nebo nemáte oprávnění k jeho čtení." +msgstr "Možná nemáte oprávnění k přečtění tohoto souboru." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" -msgstr "" +msgstr "Soubor může být poškozený nebo se nemusí jednat o textový soubor" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 -#, fuzzy -#| msgid "Load Anyway" +#: src/Services/Document.vala:789 msgid "Show Anyway" -msgstr "Přesto načíst" +msgstr "Přesto zobrazit" -#: src/Services/Document.vala:864 -#, fuzzy, c-format -#| msgid "" -#| "The location containing the file \"%s\" was unmounted. Do you want to " -#| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +#: src/Services/Document.vala:820 +#, c-format +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -"Úložiště obsahující soubor „%s“ bylo odpojeno. Přejete si ho uložit jinam?" +"Úložiště obsahující soubor „%s“ bylo odpojeno a existují neuložené změny." -#: src/Services/Document.vala:866 -#, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "Soubor %s byl smazán." +#: src/Services/Document.vala:822 +#, c-format +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "Soubor „%s“ byl mezitím smazán a existují neuložené změny." #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 -#, fuzzy, c-format -#| msgid "File \"%s\" was deleted. Do you want to save it anyway?" +#: src/Services/Document.vala:836 +#, c-format msgid "File “%s” does not have write permission." -msgstr "Soubor „%s“ byl smazán. Přejete si ho přesto uložit?" +msgstr "Soubor „%s“ je chráněn proti zápisu." -#: src/Services/Document.vala:906 -#, fuzzy, c-format -#| msgid "" -#| "File \"%s\" was modified by an external application. Do you want to load " -#| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +#: src/Services/Document.vala:882 +#, c-format +msgid "File “%s” was modified by an external application" +msgstr "Soubor „%s“ byl mezitím pozměněn jinou aplikací" + +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -"Soubor „%s“ byl mezitím pozměněn jinou aplikací. Přejete si ho otevřít znovu " -"nebo chcete pokračovat v úpravách?" +"Existují neuložené změny. Opětovné načtení dokumentu přepíše tyto neuložené " +"změny." -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Nahrát" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "Tento dokument byl od posledního uložení pozměněn jinou aplikací." -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Pokračovat" - -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" -msgstr "" +msgstr "Soubor „%s“ nemůže být uložen zde. Chcete jeho kopii uložit jinam?" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" -msgstr "" +msgstr "Ignorovat" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" -msgstr "" +msgstr "Uložit kopii…" + +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Pokračovat" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "Znovu načíst" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "Přepsat" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "Uložit dokument jinam" #: src/Services/TemplateManager.vala:198 msgid "Templates" @@ -541,54 +531,48 @@ msgstr "Aktivní Git projekt: %s" msgid "Filter projects" msgstr "Filtrovat projekty" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Textový soubor z %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Zvýraznění syntaxe" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Číslo řádku" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Filtrovat jazyky" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Prostý text" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" -msgstr "" +msgstr "Nějaká nastavení jsou nastavena souborem EditorConfig" -#: src/Widgets/FormatBar.vala:148 -#, fuzzy -#| msgid "Automatic indentation:" +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" -msgstr "Automatické odsazování:" +msgstr "Automatické odsazování" -#: src/Widgets/FormatBar.vala:150 -#, fuzzy -#| msgid "Insert spaces instead of tabs:" +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" -msgstr "Vkládat mezery místo tabulátorů:" +msgstr "Vkládat mezery místo tabulátorů" -#: src/Widgets/FormatBar.vala:152 -#, fuzzy -#| msgid "Tab width:" +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" -msgstr "Šířka tabulátoru:" +msgstr "Šířka tabulátoru" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Přejít na řádek:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" @@ -596,7 +580,7 @@ msgstr[0] "%d mezera" msgstr[1] "%d mezery" msgstr[2] "%d mezer" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -642,7 +626,7 @@ msgstr "Přiblížit" #: src/Widgets/HeaderBar.vala:144 msgid "Follow System Style" -msgstr "" +msgstr "Podle vzhledu systému" #: src/Widgets/HeaderBar.vala:195 src/Widgets/HeaderBar.vala:265 msgid "Show Terminal" @@ -657,10 +641,8 @@ msgid "Hide Terminal" msgstr "Skrýt terminál" #: src/Widgets/Sidebar.vala:57 -#, fuzzy -#| msgid "Open Folder" msgid "Open Folder…" -msgstr "Otevřít složku" +msgstr "Otevřít složku…" #: src/Widgets/Sidebar.vala:60 msgid "Collapse All" @@ -674,86 +656,80 @@ msgstr "Řadit podle abecedy" msgid "Manage project folders" msgstr "Spravovat složky projektu" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Najít" -#: src/Widgets/SearchBar.vala:75 -#, fuzzy -#| msgid "no results" +#: src/Widgets/SearchBar.vala:74 msgid "No Results" -msgstr "nic nenalezeno" +msgstr "Žádné výsledky" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Najít další" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Najít předchozí" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Opakované hledání" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Nikdy" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" -msgstr "" +msgstr "Smíšená písmena" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Vždy" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Rozlišovat malá/VELKÁ písmena" -#: src/Widgets/SearchBar.vala:115 -#, fuzzy -#| msgid "Use regular expressions" +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "Použít regulární výrazy" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" -msgstr "" +msgstr "Hledat pouze celá slova" -#: src/Widgets/SearchBar.vala:137 -#, fuzzy -#| msgid "Search previous" +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" -msgstr "Najít předchozí" +msgstr "Nastavení hledání" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Nahradit za" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Nahradit" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Nahradit vše" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" -msgstr "" +msgstr "%d z %d" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "nic nenalezeno" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Seřadit vybrané řádky" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Zobraz/nezobraz. komentář" @@ -859,6 +835,10 @@ msgstr "Nainstalujte prosím alespoň jeden [aspell] slovník." msgid "%s - Word Completion" msgstr "%s – dokončování slov" +#, c-format +#~ msgid "File “%s” was deleted." +#~ msgstr "Soubor „%s“ byl smazán." + #~ msgid "Set of plugins" #~ msgstr "Sada zásuvných modulů" @@ -891,11 +871,6 @@ msgstr "%s – dokončování slov" #~ msgstr "" #~ "Změny nelze uložit do souboru „%s“. Přejete si tyto změny uložit jinam?" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Uložit současný soubor" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "Soubor „%s“ se nedaří přečíst" diff --git a/po/cu.po b/po/cu.po index 721fb43f6c..0660a1f871 100644 --- a/po/cu.po +++ b/po/cu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,39 +56,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -337,131 +337,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -488,55 +508,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -611,80 +631,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/cv.po b/po/cv.po index 2972608bcc..a4d3207f25 100644 --- a/po/cv.po +++ b/po/cv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-21 13:37+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "вăйран кăлар" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -347,141 +347,161 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "вăйран кăлар" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "%s документра улăштарнисене упраса хăвармалла-и хупиччен?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Енчен те упраса хăвармастăр пулсан, юлашки 4 çеккунтри улшăнусем çухалаççе." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Упраса хăвармасăрах хуп" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Упраса хăвар" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "%s документра улăштарнисене упраса хăвармалла-и хупиччен?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Файл упраса хăвар" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Çĕнĕ документ" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "Вулаймастăп \"%s\" файла. Тен вăл ваннă" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "\"%s\" файл вырнаçнă вырăна кăларнă. Урăх вырăна упраса хăвармалла-и?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "\"%s\" файла шăлса тасатнă. Çапах упраса хăвармалла-и ăна?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "\"%s\" файла шăлса тасатнă. Çапах упраса хăвармалла-и ăна?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -508,55 +528,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -632,80 +652,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/cy.po b/po/cy.po index cb92d84d53..d471b3bcbc 100644 --- a/po/cy.po +++ b/po/cy.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/da.po b/po/da.po index a231737fb8..b584633f83 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2020-05-30 10:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" @@ -79,39 +79,39 @@ msgstr "Ingen Symboler Fundet" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Alle filer" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Tekstfiler" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Åbn nogle filer" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Åbn" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Annuller" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Åbn" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Annuller" @@ -383,153 +383,179 @@ msgstr "Branch" msgid "Branch" msgstr "Branch" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s Er Ikke En Tekstfil" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Code kan ikke indlæse denne type fil." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Indlæs Alligevel" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, fuzzy, c-format #| msgid "Loading File \"%s\" Is Taking a Long Time" msgid "Loading File “%s” Is Taking a Long Time" msgstr "Indlæsning af Filen \"%s\" Tager Lang Tid" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Vent venligst, mens Code indlæser filen." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Annuller Indlæsning" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Save changes to “%s” before closing?" msgstr "Gem ændringer til dokumentet \"%s\", inden lukning?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "Hvis ikke du gemmer, vil ændringer gå tabt permanent." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Luk uden at gemme" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Gem" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Saving to “%s” failed." msgstr "Gem ændringer til dokumentet \"%s\", inden lukning?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Gem fil" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Nyt Dokument" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy #| msgid "It may be corrupt or you don't have permission to read it." msgid "You may not have permission to read the file." msgstr "" "Den kan være beskadiget, eller du kan mangle tilladelse til at læse den." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 #, fuzzy #| msgid "Load Anyway" msgid "Show Anyway" msgstr "Indlæs Alligevel" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "Placeringen som indeholder filen \"%s\" blev afmonteret. Vil du gemme et " "andet sted?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "Filen %s blev slettet." +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Filen \"%s\" var ændret af en anden applikation. Vil du indlæse den igen " +"eller fortsætte med dine ændringer?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "Filen \"%s\" blev slettet. Vil du gemme den alligevel?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "Filen \"%s\" var ændret af en anden applikation. Vil du indlæse den igen " "eller fortsætte med dine ændringer?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Upload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Fortsæt" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Fortsæt" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Upload" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "Gem den aktuelle fil" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Skabeloner" @@ -558,61 +584,61 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Tekstfil fra %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Syntaksfremhævning" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Linjenummer" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Filtrér sprog" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Simpel Tekst" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Automatisk indrykning:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Indsæt mellemrum i stedet for tab:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Tab bredde:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Gå til linje:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d Mellemrum" msgstr[1] "%d Mellemrum" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -689,82 +715,82 @@ msgstr "Alfabetisér" msgid "Manage project folders" msgstr "Administrer projektmapper" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Find" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Søg næste" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Søg forrige" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Start forfra når bunden er nået" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Aldrig" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Altid" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Versalfølsom" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Søg forrige" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Erstat med" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Erstat" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Erstat alle" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Sorter Valgte Linjer" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Slå Kommentarer til/fra" @@ -874,6 +900,11 @@ msgstr "Installer venligst mindst en [aspell] ordbog." msgid "%s - Word Completion" msgstr "%s - Fuldførsel af ord" +#, fuzzy, c-format +#~| msgid "The file %s was deleted." +#~ msgid "File “%s” was deleted." +#~ msgstr "Filen %s blev slettet." + #~ msgid "Set of plugins" #~ msgstr "Pluginsæt" @@ -908,11 +939,6 @@ msgstr "%s - Fuldførsel af ord" #~ "Du kan ikke gemme dine ændringer i filen \"%s\". Vil du gemme ændringerne " #~ "et andet sted?" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Gem den aktuelle fil" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "Filen \"%s\" Kan Ikke Læses" diff --git a/po/de.po b/po/de.po index ea49de75fd..c921b5f62c 100644 --- a/po/de.po +++ b/po/de.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" -"PO-Revision-Date: 2023-05-01 21:16+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" +"PO-Revision-Date: 2023-07-14 18:07+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" "Language: de\n" @@ -70,39 +70,39 @@ msgstr "Gliederungsymbole anzeigen" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "%s – %s" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Alle Dateien" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Textdateien" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Datei öffnen" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Öffnen" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Abbrechen" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Öffnen" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Abbrechen" @@ -356,136 +356,163 @@ msgstr "Neuer Zweig …" msgid "Branch" msgstr "Branch" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s ist keine Textdatei" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Code wird diesen Dateityp nicht laden." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Trotzdem laden" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "Das Laden von »%s« dauert sehr lange" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Bitte warten Sie, während Code die Datei lädt." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Laden abbrechen" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "Änderungen am Dokument »%s« vor dem Schließen speichern?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" "Wenn Sie nicht speichern, gehen Ihre Änderungen unwiderruflich verloren." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Schließen ohne zu speichern" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Speichern" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "Speichern in »%s« fehlgeschlagen." -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Datei speichern" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Neues Dokument" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "Dieses Dokument konnte nicht in %s gespeichert werden" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "Kein Text in Datei »%s« gelesen" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" "Sie verfügen möglicherweise nicht über die benötigten Rechte zum Lesen der " "Datei." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "Die Datei ist möglicherweise beschädigt oder keine Textdatei" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "Trotzdem anzeigen" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." -msgstr "Der Ort, an dem sich die Datei »%s« befindet, wurde ausgehängt." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." +msgstr "" +"Der Ort, an dem sich die Datei »%s« befindet, wurde ausgehängt; es sind " +"ungespeicherte Änderungen vorhanden." -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." -msgstr "Datei »%s« wurde gelöscht." +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Die Datei »%s« wurde gelöscht; es sind ungespeicherte Änderungen vorhanden." #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "Datei »%s« ist schreibgeschützt." -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." -msgstr "Die Datei »%s« wurde von einer anderen Anwendung bearbeitet." +msgid "File “%s” was modified by an external application" +msgstr "Die Datei »%s« wurde von einer anderen Anwendung bearbeitet" -#: src/Services/Document.vala:912 -msgid "Reload" -msgstr "Neu laden" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" +"Es sind außerdem ungespeicherte Ändeungen vorhanden. Ein erneutes Laden des " +"Dokuments wird diese Änderungen überschreiben." -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Fortfahren" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" +"Das Dokument wurde von einem anderen Programm geändert, nachdem Sie es " +"zuletzt gespeichert haben." -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" "»%s« konnte hier nicht gespeichert werden. Eine Kopie an anderem Ort " "speichern?" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "Ignorieren" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "Kopie speichern …" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Fortfahren" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "Neu laden" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "Überschreiben" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "Dokument an anderem Ort speichern" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Vorlagen" @@ -512,55 +539,55 @@ msgstr "Aktives Git-Projekt: %s" msgid "Filter projects" msgstr "Projekte filtern" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Textdatei aus %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Syntax hervorheben" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Zeilennummer" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Sprachen filtern" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Einfacher Text" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "Einige Einstellungen durch EditorConfig-Datei vorgenommen" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "Automatisch einrücken" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "Leerzeichen anstelle von Tabulatoren einfügen" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "Tabulatorbreite" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Zur Zeile gehen:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d Leerzeichen" msgstr[1] "%d Leerzeichen" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -635,80 +662,80 @@ msgstr "Alphabetisieren" msgid "Manage project folders" msgstr "Projektordner verwalten" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Suchen" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "Keine Ergebnisse" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Nächstes Suchergebnis" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Vorheriges Suchergebnis" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Suche immer am Textanfang fortsetzen" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Nie" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "Groß-/Kleinschreibung ignorieren" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Immer" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Groß- und Kleinschreibung beachten" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "Reguläre Ausdrücke verwenden" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "Ganze Wörter" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "Suchoptionen" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Ersetzen durch" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Ersetzen" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Alle ersetzen" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "%d von %d" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "keine Ergebnisse" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Markierte Zeilen sortieren" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Kommentar umschalten" @@ -814,6 +841,10 @@ msgstr "Bitte mindestens ein [aspell]-Wörterbuch installieren." msgid "%s - Word Completion" msgstr "%s – Wortvervollständigung" +#, c-format +#~ msgid "File “%s” was deleted." +#~ msgstr "Datei »%s« wurde gelöscht." + #~ msgid "Set of plugins" #~ msgstr "Erweiterungssammlung" @@ -842,9 +873,6 @@ msgstr "%s – Wortvervollständigung" #~ "Sie können die Änderungen an der Datei »%s« nicht speichern. Möchten Sie " #~ "die Änderungen an einem anderen Ort speichern?" -#~ msgid "Save the document elsewhere" -#~ msgstr "Dokument an anderem Ort speichern" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "Datei »%s« kann nicht gelesen werden" diff --git a/po/dv.po b/po/dv.po index acd641b943..c189ddecec 100644 --- a/po/dv.po +++ b/po/dv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/dz.po b/po/dz.po index acd641b943..c189ddecec 100644 --- a/po/dz.po +++ b/po/dz.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/ee.po b/po/ee.po index acd641b943..c189ddecec 100644 --- a/po/ee.po +++ b/po/ee.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -64,39 +64,39 @@ msgstr "" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "" @@ -345,131 +345,151 @@ msgstr "" msgid "Branch" msgstr "" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "" -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." msgstr "" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" -#: src/Services/Document.vala:912 -msgid "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "" @@ -496,55 +516,55 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -619,80 +639,80 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" diff --git a/po/el.po b/po/el.po index 36354a0e02..b71b6f48d1 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Greek \n" @@ -79,39 +79,39 @@ msgstr "Σύμβολα" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Όλα τα αρχεία" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Αρχεία κειμένου" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Άνοιγμα μερικών αρχείων" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Άνοιγμα" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Ακύρωση" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Άνοιγμα" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Ακύρωση" @@ -382,154 +382,180 @@ msgstr "Αλλαγή ρυθμίσεων του Scratch" msgid "Branch" msgstr "Αλλαγή ρυθμίσεων του Scratch" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "Το %s δεν είναι αρχείο κειμένου" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Ο κώδικας δεν μπορεί να φορτώσει αυτόν τον τύπο αρχείου." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Φόρτωσέ το" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Παρακαλώ περιμένετε όσο ο κώδικας φορτώνει το αρχείο." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Ακύρωση" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Αποθήκευση των αλλαγών στο έγγραφο %s πριν την έξοδο;" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Αν δεν αποθηκεύσετε, οι αλλαγές των τελευταίων 4 δευτερολέπτων θα χαθούν " "μόνιμα." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Κλείσιμο χωρίς αποθήκευση" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Αποθήκευση" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Αποθήκευση των αλλαγών στο έγγραφο %s πριν την έξοδο;" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Αποθήκευση Αρχείου" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Νέο έγγραφο" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "Ίσως δεν έχετε τα απαραίτητα δικαιώματα." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 #, fuzzy #| msgid "Load Anyway" msgid "Show Anyway" msgstr "Φόρτωσέ το" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "Η τοποθεσία που περιέχει το αρχείο \"%s\" δεν μπορεί να βρεθεί. Θέλετε να " "αποθηκεύσετε σε κάποια άλλη τοποθεσία;" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "Το αρχείο %s διεγράφη." +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Το αρχείο \"%s\" τροποποιήθηκε από κάποια άλλη εφαρμογή. Θέλετε να το " +"φορτώσετε ξανά ή να συνεχίσετε την επεξεργασία;" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "" "Το αρχείο \"%s\" έχει διαγραφεί. Θέλετε να το αποθηκεύσετε ούτως ή άλλως;" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "Το αρχείο \"%s\" τροποποιήθηκε από κάποια άλλη εφαρμογή. Θέλετε να το " "φορτώσετε ξανά ή να συνεχίσετε την επεξεργασία;" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Μεταφόρτωση" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Συνέχεια" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Συνέχεια" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Μεταφόρτωση" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "Αποθήκευση τρέχοντος αρχείου" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Πρότυπα" @@ -558,62 +584,62 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Αρχείο κειμένου από " -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Επισήμανση σύνταξης" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "Εμφάνιση αριθμών γραμμών:" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Φιλτράρετε τις γλώσσες" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Απλό κείμενο" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Αυτόματη εσοχή:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Εισαγωγή κενών αντί για καρτέλες:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Πλάτος καρτέλας:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Μετάβαση Στη Γραμμή:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d Κενό" msgstr[1] "%d Κενά" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -691,82 +717,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Εύρεση" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Αναζήτηση επόμενου" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Αναζήτηση προηγούμενου" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Ποτέ" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Πάντα" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Αναζήτηση προηγούμενου" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Αντικατάσταση Με" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Αντικατάσταση" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Αντικατάσταση Όλων" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -880,6 +906,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - Συμπλήρωση Λέξεων" +#, fuzzy, c-format +#~| msgid "The file %s was deleted." +#~ msgid "File “%s” was deleted." +#~ msgstr "Το αρχείο %s διεγράφη." + #~ msgid "Set of plugins" #~ msgstr "Σετ προσθέτων" @@ -909,11 +940,6 @@ msgstr "%s - Συμπλήρωση Λέξεων" #~ "Δεν μπορείτε να αποθηκεύσετε τις αλλαγές στο αρχείο \"%s\". Θέλετε να " #~ "αποθηκεύσετε τις αλλαγές σε αυτό το αρχείο σε μια διαφορετική τοποθεσία;" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Αποθήκευση τρέχοντος αρχείου" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "Το αρχείο \"%s\" δεν μπορεί να διαβαστεί" diff --git a/po/en_AU.po b/po/en_AU.po index 5d34e5da4e..6c4072a476 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: English (Australia) \n" "Language-Team: English (Canada) \n" "Language-Team: English (United Kingdom) \n" @@ -71,39 +71,39 @@ msgstr "Show Symbol Outline" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "%s - %s" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "All files" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Text files" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Open some files" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Open" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Cancel" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Open" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Cancel" @@ -354,131 +354,155 @@ msgstr "New Branch…" msgid "Branch" msgstr "Branch" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s Is Not a Text File" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Code will not load this type of file." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Load Anyway" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "Loading File “%s” Is Taking a Long Time" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Please wait while Code is loading the file." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Cancel Loading" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, c-format msgid "Save changes to “%s” before closing?" msgstr "Save changes to “%s” before closing?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "If you don't save, changes will be permanently lost." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Close Without Saving" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Save" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, c-format msgid "Saving to “%s” failed." msgstr "Saving to “%s” failed." -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Save File" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "New Document" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "Cannot save this document to %s" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "Cannot read text in file “%s”" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "You may not have permission to read the file." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "The file may be corrupt or may not be a text file" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "Show Anyway" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." -msgstr "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." +msgstr "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, c-format -msgid "File “%s” was deleted." -msgstr "File “%s” was deleted." +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "File “%s” was deleted and there are unsaved changes." #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "File “%s” does not have write permission." -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, c-format -msgid "File “%s” was modified by an external application." -msgstr "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" +msgstr "File “%s” was modified by an external application" -#: src/Services/Document.vala:912 -msgid "Reload" -msgstr "Reload" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Continue" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "The document changed externally since you last saved it." -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "“%s” can't be saved here. Save a duplicate somewhere else?" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "Ignore" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "Save Duplicate…" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Continue" + +#: src/Services/Document.vala:969 +msgid "Reload" +msgstr "Reload" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "Overwrite" + +#: src/Services/Document.vala:975 +msgid "Save Document elsewhere" +msgstr "Save Document elsewhere" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Templates" @@ -505,55 +529,55 @@ msgstr "Active Git project: %s" msgid "Filter projects" msgstr "Filter projects" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Text file from %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Syntax Highlighting" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Line number" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Filter languages" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Plain Text" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "Some settings set by EditorConfig file" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 msgid "Automatic Indentation" msgstr "Automatic Indentation" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 msgid "Insert Spaces Instead Of Tabs" msgstr "Insert Spaces Instead Of Tabs" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 msgid "Tab width" msgstr "Tab width" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Go To Line:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d Space" msgstr[1] "%d Spaces" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -628,80 +652,80 @@ msgstr "Alphabetise" msgid "Manage project folders" msgstr "Manage project folders" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Find" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "No Results" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Search next" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Search previous" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Cyclic Search" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Never" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "Mixed Case" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Always" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Case Sensitive" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "Use Regular Expressions" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "Match Whole Words" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 msgid "Search Options" msgstr "Search Options" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Replace With" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Replace" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Replace all" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "%d of %d" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "no results" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Sort Selected Lines" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Toggle Comment" @@ -807,6 +831,10 @@ msgstr "Please install at least one [aspell] dictionary." msgid "%s - Word Completion" msgstr "%s - Word Completion" +#, c-format +#~ msgid "File “%s” was deleted." +#~ msgstr "File “%s” was deleted." + #~ msgid "Set of plugins" #~ msgstr "Set of plug-ins" @@ -835,9 +863,6 @@ msgstr "%s - Word Completion" #~ "You cannot save changes to the file “%s”. Do you want to save the changes " #~ "somewhere else?" -#~ msgid "Save the document elsewhere" -#~ msgstr "Save the document elsewhere" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "File \"%s\" Cannot Be Read" diff --git a/po/eo.po b/po/eo.po index b76ce67bda..217b1e1675 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2020-03-14 21:09+0000\n" "Last-Translator: Shtonchjo \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" @@ -79,39 +79,39 @@ msgstr "No se encontró ningún símbolo" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Todos los archivos" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Archivos de texto" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Abra algunos archivos" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Abrir" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Cancelar" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Abrir" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Cancelar" @@ -370,153 +370,179 @@ msgstr "Rama nueva…" msgid "Branch" msgstr "Rama" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "%s no es un archivo de texto" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "Code no cargará este tipo de archivo." -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "Cargar de todos modos" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, fuzzy, c-format #| msgid "Loading File \"%s\" Is Taking a Long Time" msgid "Loading File “%s” Is Taking a Long Time" msgstr "La carga del archivo «%s» está demorando mucho" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "Espere mientras Code carga el archivo." -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 msgid "Cancel Loading" msgstr "Cancelar carga" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Save changes to “%s” before closing?" msgstr "¿Quiere guardar los cambios del documento «%s» antes de cerrar?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 msgid "If you don't save, changes will be permanently lost." msgstr "Si no guarda el documento, los cambios se perderán permanentemente." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 msgid "Close Without Saving" msgstr "Cerrar sin guardar" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Guardar" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format #| msgid "Save changes to \"%s\" before closing?" msgid "Saving to “%s” failed." msgstr "¿Quiere guardar los cambios del documento «%s» antes de cerrar?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Guardar archivo" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Documento nuevo" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, fuzzy, c-format #| msgid "Search for text in “%s”" msgid "Cannot read text in file “%s”" msgstr "Buscar texto en «%s»" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy #| msgid "It may be corrupt or you don't have permission to read it." msgid "You may not have permission to read the file." msgstr "Tal vez esté dañado o no tenga los permisos necesarios para leerlo." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 #, fuzzy #| msgid "Load Anyway" msgid "Show Anyway" msgstr "Cargar de todos modos" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "La ubicación que contiene el archivo «%s» fue desmontada. ¿Quiere guardarlo " "en otra ubicación?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "El archivo %s fue borrado." +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"El archivo «%s» fue modificado por una aplicación externa. ¿Quiere cargarlo " +"nuevamente o continuar editándolo?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "El archivo «%s» fue eliminado. ¿Quiere guardarlo de todos modos?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "El archivo «%s» fue modificado por una aplicación externa. ¿Quiere cargarlo " "nuevamente o continuar editándolo?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Enviar" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Continuar" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Continuar" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Enviar" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "Guardar archivo actual" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Plantillas" @@ -543,61 +569,61 @@ msgstr "Proyecto Git activo: %s" msgid "Filter projects" msgstr "Filtrar proyectos" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, c-format msgid "Text file from %s:%d" msgstr "Archivo de texto de %s:%d" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Coloración sintáctica" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 msgid "Line number" msgstr "Número de renglón" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "Filtrar lenguajes" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "Texto sin formato" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Sangría automática:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Insertar espacios en lugar de tabuladores:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Anchura del tabulador:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Ir al renglón:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "%d espacio" msgstr[1] "%d espacios" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -674,86 +700,86 @@ msgstr "Por orden alfabético" msgid "Manage project folders" msgstr "Gestionar carpetas de proyecto" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Buscar" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 #, fuzzy #| msgid "no results" msgid "No Results" msgstr "sin resultados" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Buscar siguiente" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Buscar anterior" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Búsqueda cíclica" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Nunca" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "Siempre" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "Distinguir mayúsculas y minúsculas" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 #, fuzzy #| msgid "Use regular expressions:" msgid "Use Regular Expressions" msgstr "Utilizar expresiones regulares:" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Buscar anterior" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Reemplazar con" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Reemplazar" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Reemplazar todo" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "sin resultados" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "Ordenar líneas seleccionadas" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "Alternar comentario" @@ -859,6 +885,11 @@ msgstr "Instale por lo menos un diccionario [de aspell]." msgid "%s - Word Completion" msgstr "%s. Compleción de palabras" +#, fuzzy, c-format +#~| msgid "The file %s was deleted." +#~ msgid "File “%s” was deleted." +#~ msgstr "El archivo %s fue borrado." + #~ msgid "Set of plugins" #~ msgstr "Conjunto de complementos" @@ -893,11 +924,6 @@ msgstr "%s. Compleción de palabras" #~ "No puede guardar los cambios en el archivo «%s». ¿Quiere guardar los " #~ "cambios de este archivo en otra ubicación?" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Guardar archivo actual" - #, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "No se puede leer el archivo «%s»" diff --git a/po/et.po b/po/et.po index 2066ea340d..154c4b1757 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2016-06-14 15:42+0000\n" "Last-Translator: Kristjan Vool \n" "Language-Team: Estonian \n" @@ -77,39 +77,39 @@ msgstr "Sümbolid" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Kõik Failid" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Tekstifailid" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Faili avamine" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Ava" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Loobu" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Ava" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Loobu" @@ -380,152 +380,178 @@ msgstr "Scratch'i eelistuste muutmine" msgid "Branch" msgstr "Scratch'i eelistuste muutmine" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Loobu" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "Kas salvestada faili %s muudatused enne sulgemist?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Kui sa ei salvesta, siis viimase 4 sekundi jooksul tehtud muudatused lähevad " "kaotsi." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Sulge ilma salvestamata" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Salvesta" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "Kas salvestada faili %s muudatused enne sulgemist?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Faili salvestamine" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Uus fail" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 #, fuzzy msgid "You may not have permission to read the file." msgstr "" "Faili \"%s\" polnud võimalik lugeda. See võib olla rikutud\n" "või sul puuduvad selle lugemiseks vajalikud õigused." -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, fuzzy, c-format #| msgid "" #| "The location containing the file \"%s\" was unmounted. Do you want to " #| "save somewhere else?" -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" "Faili \"%s\" sisaldav asukoht haagiti lahti. Soovid teise kohta salvestada?" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "Fail %s kustutati vahepeal." +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"Faili \"%s\" muudeti teise rakenduse poolt. Soovid sa selle uuesti laadida " +"või jätkata juba tehtud muudatustega?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, fuzzy, c-format #| msgid "File \"%s\" was deleted. Do you want to save it anyway?" msgid "File “%s” does not have write permission." msgstr "Fail \"%s\" kustutati. Soovid sellegipoolest salvestada?" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "Faili \"%s\" muudeti teise rakenduse poolt. Soovid sa selle uuesti laadida " "või jätkata juba tehtud muudatustega?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Laadi üles" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Katkesta" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Katkesta" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Laadi üles" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "Salvesta fail" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Mallid" @@ -554,62 +580,62 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Tekstifail asukohast " -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Formaat" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "Rea numbrite näitamine:" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Automaatne taandus:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Vahemärkide lisamine tab'i märgi asemel:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Tab - klahvi laius vahemärkidena:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Mine reale:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, fuzzy, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "Vahemärkide kuvamine:" msgstr[1] "Vahemärkide kuvamine:" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -687,82 +713,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Leia" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Leia järgmine" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Leia eelmine" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Tsükliline otsing" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Mitte kunagi" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Leia eelmine" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Asenda" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Asenda" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Asenda kõik" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -879,6 +905,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - sõnade lõpetamine" +#, fuzzy, c-format +#~| msgid "The file %s was deleted." +#~ msgid "File “%s” was deleted." +#~ msgstr "Fail %s kustutati vahepeal." + #~ msgid "Set of plugins" #~ msgstr "Pluginate kogu" @@ -908,11 +939,6 @@ msgstr "%s - sõnade lõpetamine" #~ "Faili \"%s\" muudatusi pole võimalik salvestada. Soovid faili teise kohta " #~ "salvestada?" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Salvesta fail" - #, fuzzy, c-format #~ msgid "File \"%s\" Cannot Be Read" #~ msgstr "" diff --git a/po/eu.po b/po/eu.po index 70c685b5e5..af41aa36b4 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2016-09-11 21:29+0000\n" "Last-Translator: Thadah Denyse \n" "Language-Team: Basque \n" @@ -77,39 +77,39 @@ msgstr "Ikurrak" #. Update MainWindow title #. / TRANSLATORS: First placeholder is document name, second placeholder is app name -#: src/MainWindow.vala:527 +#: src/MainWindow.vala:533 #, c-format msgid "%s - %s" msgstr "" -#: src/MainWindow.vala:832 src/Services/Document.vala:586 +#: src/MainWindow.vala:838 src/Services/Document.vala:597 msgid "All files" msgstr "Fitxategi guztiak" -#: src/MainWindow.vala:836 src/Services/Document.vala:590 +#: src/MainWindow.vala:842 src/Services/Document.vala:601 msgid "Text files" msgstr "Testu-fitxategiak" -#: src/MainWindow.vala:840 +#: src/MainWindow.vala:846 msgid "Open some files" msgstr "Fitxategi batzuk ireki" -#: src/MainWindow.vala:843 +#: src/MainWindow.vala:849 msgid "Open" msgstr "Ireki" -#: src/MainWindow.vala:844 src/Dialogs/GlobalSearchDialog.vala:109 -#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:439 -#: src/Services/Document.vala:598 plugins/pastebin/pastebin_dialog.vala:327 +#: src/MainWindow.vala:850 src/Dialogs/GlobalSearchDialog.vala:109 +#: src/Dialogs/NewBranchDialog.vala:42 src/Services/Document.vala:441 +#: src/Services/Document.vala:609 plugins/pastebin/pastebin_dialog.vala:327 #: plugins/pastebin/pastebin_dialog.vala:378 msgid "Cancel" msgstr "Utzi" -#: src/MainWindow.vala:869 +#: src/MainWindow.vala:875 msgid "_Open" msgstr "_Ireki" -#: src/MainWindow.vala:870 +#: src/MainWindow.vala:876 msgid "_Cancel" msgstr "_Utzi" @@ -380,143 +380,169 @@ msgstr "Aldatu Scratch-en ezarpenak" msgid "Branch" msgstr "Aldatu Scratch-en ezarpenak" -#: src/Services/Document.vala:305 +#: src/Services/Document.vala:317 #, c-format msgid "%s Is Not a Text File" msgstr "" -#: src/Services/Document.vala:306 +#: src/Services/Document.vala:318 msgid "Code will not load this type of file." msgstr "" -#: src/Services/Document.vala:308 +#: src/Services/Document.vala:320 msgid "Load Anyway" msgstr "" -#: src/Services/Document.vala:329 +#: src/Services/Document.vala:341 #, c-format msgid "Loading File “%s” Is Taking a Long Time" msgstr "" -#: src/Services/Document.vala:330 +#: src/Services/Document.vala:342 msgid "Please wait while Code is loading the file." msgstr "" -#: src/Services/Document.vala:332 +#: src/Services/Document.vala:344 #, fuzzy msgid "Cancel Loading" msgstr "Utzi" -#: src/Services/Document.vala:429 +#: src/Services/Document.vala:431 #, fuzzy, c-format msgid "Save changes to “%s” before closing?" msgstr "%s dokumentuaren aldaketak gorde irten aurretik?" -#: src/Services/Document.vala:430 +#: src/Services/Document.vala:432 #, fuzzy msgid "If you don't save, changes will be permanently lost." msgstr "" "Ez baduzu gordetzen, azken 4 segundotako aldaketak betirako galduko dira." -#: src/Services/Document.vala:436 +#: src/Services/Document.vala:438 #, fuzzy msgid "Close Without Saving" msgstr "Itxi gorde gabe" -#: src/Services/Document.vala:440 src/Services/Document.vala:597 +#: src/Services/Document.vala:442 src/Services/Document.vala:608 msgid "Save" msgstr "Gorde" -#: src/Services/Document.vala:555 +#: src/Services/Document.vala:567 #, fuzzy, c-format msgid "Saving to “%s” failed." msgstr "%s dokumentuaren aldaketak gorde irten aurretik?" -#: src/Services/Document.vala:594 +#: src/Services/Document.vala:605 msgid "Save File" msgstr "Gorde fitxategia" -#: src/Services/Document.vala:678 src/Services/Document.vala:696 +#: src/Services/Document.vala:692 src/Services/Document.vala:710 msgid "New Document" msgstr "Dokumentu berria" #. No path for a new document -#: src/Services/Document.vala:698 +#: src/Services/Document.vala:712 #, c-format msgid "Cannot save this document to %s" msgstr "" #. Show an error view which says "Hey, I cannot read that file!" -#: src/Services/Document.vala:823 +#: src/Services/Document.vala:778 #, c-format msgid "Cannot read text in file “%s”" msgstr "" -#: src/Services/Document.vala:826 +#: src/Services/Document.vala:781 msgid "You may not have permission to read the file." msgstr "" -#: src/Services/Document.vala:828 +#: src/Services/Document.vala:783 msgid "The file may be corrupt or may not be a text file" msgstr "" #. Lack of read permission results in empty content string. Do not give option to open #. in new document in that case. -#: src/Services/Document.vala:834 +#: src/Services/Document.vala:789 msgid "Show Anyway" msgstr "" -#: src/Services/Document.vala:864 +#: src/Services/Document.vala:820 #, c-format -msgid "The location containing the file “%s” was unmounted." +msgid "" +"The location containing the file “%s” was unmounted and there are unsaved " +"changes." msgstr "" -#: src/Services/Document.vala:866 +#: src/Services/Document.vala:822 #, fuzzy, c-format -#| msgid "The file %s was deleted." -msgid "File “%s” was deleted." -msgstr "%s fitxategia ezabatua izan da." +#| msgid "" +#| "File \"%s\" was modified by an external application. Do you want to load " +#| "it again or continue your editing?" +msgid "File “%s” was deleted and there are unsaved changes." +msgstr "" +"\"%s\" fitxategia kanpoko aplikazio batengatik aldatua izan da. Berriro " +"kargatu nahi duzu ala zure edizioa jarraitu?" #. Check external changes after loading #. The file has become unwritable while changes are pending -#: src/Services/Document.vala:874 +#: src/Services/Document.vala:836 #, c-format msgid "File “%s” does not have write permission." msgstr "" -#: src/Services/Document.vala:906 +#: src/Services/Document.vala:882 #, fuzzy, c-format #| msgid "" #| "File \"%s\" was modified by an external application. Do you want to load " #| "it again or continue your editing?" -msgid "File “%s” was modified by an external application." +msgid "File “%s” was modified by an external application" msgstr "" "\"%s\" fitxategia kanpoko aplikazio batengatik aldatua izan da. Berriro " "kargatu nahi duzu ala zure edizioa jarraitu?" -#: src/Services/Document.vala:912 -#, fuzzy -#| msgid "Upload" -msgid "Reload" -msgstr "Kargatu" +#: src/Services/Document.vala:887 +msgid "" +"There are also unsaved changes. Reloading the document will overwrite the " +"unsaved changes." +msgstr "" -#: src/Services/Document.vala:918 -msgid "Continue" -msgstr "Jarraitu" +#: src/Services/Document.vala:891 +msgid "The document changed externally since you last saved it." +msgstr "" -#: src/Services/Document.vala:939 +#: src/Services/Document.vala:907 #, c-format msgid "“%s” can't be saved here. Save a duplicate somewhere else?" msgstr "" -#: src/Services/Document.vala:948 +#: src/Services/Document.vala:916 msgid "Ignore" msgstr "" -#: src/Services/Document.vala:950 +#: src/Services/Document.vala:918 msgid "Save Duplicate…" msgstr "" +#: src/Services/Document.vala:967 +msgid "Continue" +msgstr "Jarraitu" + +#: src/Services/Document.vala:969 +#, fuzzy +#| msgid "Upload" +msgid "Reload" +msgstr "Kargatu" + +#: src/Services/Document.vala:972 +msgid "Overwrite" +msgstr "" + +#: src/Services/Document.vala:975 +#, fuzzy +#| msgid "Save the current file" +msgid "Save Document elsewhere" +msgstr "Gorde uneko fitxategia" + #: src/Services/TemplateManager.vala:198 msgid "Templates" msgstr "Txantiloiak" @@ -545,62 +571,62 @@ msgstr "" msgid "Filter projects" msgstr "" -#: src/Widgets/DocumentView.vala:159 +#: src/Widgets/DocumentView.vala:161 #, fuzzy, c-format msgid "Text file from %s:%d" msgstr "Testu-fitxategiak" -#: src/Widgets/FormatBar.vala:46 +#: src/Widgets/FormatBar.vala:50 msgid "Syntax Highlighting" msgstr "Sintaxiaren nabarmentzea" -#: src/Widgets/FormatBar.vala:56 +#: src/Widgets/FormatBar.vala:60 #, fuzzy msgid "Line number" msgstr "Erakutsi lerro zenbakiak:" -#: src/Widgets/FormatBar.vala:83 +#: src/Widgets/FormatBar.vala:87 msgid "Filter languages" msgstr "" -#: src/Widgets/FormatBar.vala:107 +#: src/Widgets/FormatBar.vala:111 msgid "Plain Text" msgstr "" -#: src/Widgets/FormatBar.vala:145 +#: src/Widgets/FormatBar.vala:149 msgid "Some settings set by EditorConfig file" msgstr "" -#: src/Widgets/FormatBar.vala:148 +#: src/Widgets/FormatBar.vala:152 #, fuzzy #| msgid "Automatic indentation:" msgid "Automatic Indentation" msgstr "Koska automatikoa:" -#: src/Widgets/FormatBar.vala:150 +#: src/Widgets/FormatBar.vala:154 #, fuzzy #| msgid "Insert spaces instead of tabs:" msgid "Insert Spaces Instead Of Tabs" msgstr "Txertatu zuriuneak tabuladoreen ordez:" -#: src/Widgets/FormatBar.vala:152 +#: src/Widgets/FormatBar.vala:156 #, fuzzy #| msgid "Tab width:" msgid "Tab width" msgstr "Tabuladorearen zabalera:" -#: src/Widgets/FormatBar.vala:218 +#: src/Widgets/FormatBar.vala:236 msgid "Go To Line:" msgstr "Joan lerrora:" -#: src/Widgets/FormatBar.vala:269 +#: src/Widgets/FormatBar.vala:287 #, c-format msgid "%d Space" msgid_plural "%d Spaces" msgstr[0] "" msgstr[1] "" -#: src/Widgets/FormatBar.vala:271 +#: src/Widgets/FormatBar.vala:289 #, fuzzy, c-format msgid "%d Tab" msgid_plural "%d Tabs" @@ -678,82 +704,82 @@ msgstr "" msgid "Manage project folders" msgstr "" -#: src/Widgets/SearchBar.vala:72 +#: src/Widgets/SearchBar.vala:71 msgid "Find" msgstr "Bilatu" -#: src/Widgets/SearchBar.vala:75 +#: src/Widgets/SearchBar.vala:74 msgid "No Results" msgstr "" -#: src/Widgets/SearchBar.vala:87 +#: src/Widgets/SearchBar.vala:86 msgid "Search next" msgstr "Hurrengoa bilatu" -#: src/Widgets/SearchBar.vala:97 +#: src/Widgets/SearchBar.vala:96 msgid "Search previous" msgstr "Aurrekoa bilatu" -#: src/Widgets/SearchBar.vala:100 +#: src/Widgets/SearchBar.vala:99 msgid "Cyclic Search" msgstr "Bilaketa ziklikoa" -#: src/Widgets/SearchBar.vala:103 plugins/pastebin/pastebin_dialog.vala:467 +#: src/Widgets/SearchBar.vala:102 plugins/pastebin/pastebin_dialog.vala:467 msgid "Never" msgstr "Inoiz ez" -#: src/Widgets/SearchBar.vala:104 +#: src/Widgets/SearchBar.vala:103 msgid "Mixed Case" msgstr "" -#: src/Widgets/SearchBar.vala:105 +#: src/Widgets/SearchBar.vala:104 msgid "Always" msgstr "" -#: src/Widgets/SearchBar.vala:108 +#: src/Widgets/SearchBar.vala:107 msgid "Case Sensitive" msgstr "" -#: src/Widgets/SearchBar.vala:115 +#: src/Widgets/SearchBar.vala:114 msgid "Use Regular Expressions" msgstr "" -#: src/Widgets/SearchBar.vala:116 +#: src/Widgets/SearchBar.vala:115 msgid "Match Whole Words" msgstr "" -#: src/Widgets/SearchBar.vala:137 +#: src/Widgets/SearchBar.vala:136 #, fuzzy #| msgid "Search previous" msgid "Search Options" msgstr "Aurrekoa bilatu" -#: src/Widgets/SearchBar.vala:169 +#: src/Widgets/SearchBar.vala:168 msgid "Replace With" msgstr "Ordezkatu honekin" -#: src/Widgets/SearchBar.vala:172 +#: src/Widgets/SearchBar.vala:171 msgid "Replace" msgstr "Ordezkatu" -#: src/Widgets/SearchBar.vala:175 +#: src/Widgets/SearchBar.vala:174 msgid "Replace all" msgstr "Ordeztu denak" -#: src/Widgets/SearchBar.vala:559 +#: src/Widgets/SearchBar.vala:576 #, c-format msgid "%d of %d" msgstr "" -#: src/Widgets/SearchBar.vala:564 +#: src/Widgets/SearchBar.vala:581 msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:518 +#: src/Widgets/SourceView.vala:522 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:531 +#: src/Widgets/SourceView.vala:535 msgid "Toggle Comment" msgstr "" @@ -867,6 +893,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - Hitzak osatu" +#, fuzzy, c-format +#~| msgid "The file %s was deleted." +#~ msgid "File “%s” was deleted." +#~ msgstr "%s fitxategia ezabatua izan da." + #~ msgid "Set of plugins" #~ msgstr "Plugin-sorta" @@ -880,11 +911,6 @@ msgstr "%s - Hitzak osatu" #~ msgid "Load" #~ msgstr "Kargatu" -#, fuzzy -#~| msgid "Save the current file" -#~ msgid "Save the document elsewhere" -#~ msgstr "Gorde uneko fitxategia" - #~ msgid "Save changes elsewhere" #~ msgstr "Gorde aldaketak beste nonbait" diff --git a/po/extra/aa.po b/po/extra/aa.po index 975885f34a..5342cee802 100644 --- a/po/extra/aa.po +++ b/po/extra/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ab.po b/po/extra/ab.po index 2276ae79b7..437fe5eeae 100644 --- a/po/extra/ab.po +++ b/po/extra/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ae.po b/po/extra/ae.po index 8ff520c652..399c15a47c 100644 --- a/po/extra/ae.po +++ b/po/extra/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/af.po b/po/extra/af.po index eff92617de..6893cba999 100644 --- a/po/extra/af.po +++ b/po/extra/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ak.po b/po/extra/ak.po index ea1c883bf2..ee3f5db6ea 100644 --- a/po/extra/ak.po +++ b/po/extra/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/am.po b/po/extra/am.po index ec3ed5bbfc..a2f9f11013 100644 --- a/po/extra/am.po +++ b/po/extra/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/an.po b/po/extra/an.po index e4e33c18fe..0b6f2408bb 100644 --- a/po/extra/an.po +++ b/po/extra/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ar.po b/po/extra/ar.po index 162ccdc362..6eab85478e 100644 --- a/po/extra/ar.po +++ b/po/extra/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2021-09-06 18:12+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" @@ -113,9 +113,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -132,9 +132,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -178,174 +178,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/as.po b/po/extra/as.po index 2ad06d7757..7c7eb89842 100644 --- a/po/extra/as.po +++ b/po/extra/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ast.po b/po/extra/ast.po index 6d6898876d..e421eb86fe 100644 --- a/po/extra/ast.po +++ b/po/extra/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/av.po b/po/extra/av.po index 721ab199c9..9a8d8e873b 100644 --- a/po/extra/av.po +++ b/po/extra/av.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ay.po b/po/extra/ay.po index 0e39939729..f06ceecae5 100644 --- a/po/extra/ay.po +++ b/po/extra/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/az.po b/po/extra/az.po index 291089394b..e421535290 100644 --- a/po/extra/az.po +++ b/po/extra/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/ba.po b/po/extra/ba.po index 62da4db8eb..a0477d5975 100644 --- a/po/extra/ba.po +++ b/po/extra/ba.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -110,9 +110,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -129,9 +129,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -175,174 +175,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/be.po b/po/extra/be.po index 408694833f..f7ff1e407e 100644 --- a/po/extra/be.po +++ b/po/extra/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -112,9 +112,9 @@ msgstr "" msgid "elementary, Inc." msgstr "" -#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:113 -#: data/code.metainfo.xml.in:145 data/code.metainfo.xml.in:169 -#: data/code.metainfo.xml.in:197 +#: data/code.metainfo.xml.in:71 data/code.metainfo.xml.in:119 +#: data/code.metainfo.xml.in:151 data/code.metainfo.xml.in:175 +#: data/code.metainfo.xml.in:203 msgid "Improvements:" msgstr "" @@ -131,9 +131,9 @@ msgid "" "Whole word, case sensitive mode and use regex search settings now persist" msgstr "" -#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:120 -#: data/code.metainfo.xml.in:160 data/code.metainfo.xml.in:182 -#: data/code.metainfo.xml.in:201 +#: data/code.metainfo.xml.in:77 data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:166 data/code.metainfo.xml.in:188 +#: data/code.metainfo.xml.in:207 msgid "Minor updates:" msgstr "" @@ -177,174 +177,178 @@ msgstr "" msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs" msgstr "" -#: data/code.metainfo.xml.in:87 data/code.metainfo.xml.in:130 -#: data/code.metainfo.xml.in:162 data/code.metainfo.xml.in:185 -#: data/code.metainfo.xml.in:204 +#: data/code.metainfo.xml.in:87 +msgid "Ensure active project at startup (include non-git folders)" +msgstr "" + +#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:136 +#: data/code.metainfo.xml.in:168 data/code.metainfo.xml.in:191 +#: data/code.metainfo.xml.in:210 msgid "Updated translations" msgstr "" -#: data/code.metainfo.xml.in:115 +#: data/code.metainfo.xml.in:121 msgid "Redesigned app icon" msgstr "" -#: data/code.metainfo.xml.in:116 +#: data/code.metainfo.xml.in:122 msgid "New custom dark and light elementary styles for the source view" msgstr "" -#: data/code.metainfo.xml.in:117 +#: data/code.metainfo.xml.in:123 msgid "Option to follow the system dark style preference" msgstr "" -#: data/code.metainfo.xml.in:118 +#: data/code.metainfo.xml.in:124 msgid "Ability to half tile on small notebook displays" msgstr "" -#: data/code.metainfo.xml.in:122 +#: data/code.metainfo.xml.in:128 msgid "" "Both Find on Page and Find in Project are now available from the app's menu " "instead of in the headerbar" msgstr "" -#: data/code.metainfo.xml.in:123 +#: data/code.metainfo.xml.in:129 msgid "" "Options for hiding and showing panels are now all present in a compact set " "of linked buttons in the app's menu" msgstr "" -#: data/code.metainfo.xml.in:124 +#: data/code.metainfo.xml.in:130 msgid "" "The sidebar now contains the project chooser button and fills the height of " "the window" msgstr "" -#: data/code.metainfo.xml.in:125 +#: data/code.metainfo.xml.in:131 msgid "Starting a global search with text selected now pre-fills that text" msgstr "" -#: data/code.metainfo.xml.in:126 +#: data/code.metainfo.xml.in:132 msgid "" "The symbol outline pane is now shown to the right of the source view and can " "be shown and hidden with the keyboard shortcut \"Alt + \\\"" msgstr "" -#: data/code.metainfo.xml.in:127 +#: data/code.metainfo.xml.in:133 msgid "" "Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now " "part of the main codebase" msgstr "" -#: data/code.metainfo.xml.in:128 +#: data/code.metainfo.xml.in:134 msgid "" "Show an infobar when tab width settings are being overwritten by an " "EditorConfig file" msgstr "" -#: data/code.metainfo.xml.in:129 +#: data/code.metainfo.xml.in:135 msgid "" "The shortcut for rebuilding the completion word list is now \"Ctrl + |\"" msgstr "" -#: data/code.metainfo.xml.in:147 +#: data/code.metainfo.xml.in:153 msgid "" "The current document filename is now shown as the window title in " "multitasking view" msgstr "" -#: data/code.metainfo.xml.in:148 +#: data/code.metainfo.xml.in:154 msgid "Hidden folders are now shown in the project sidebar" msgstr "" -#: data/code.metainfo.xml.in:149 +#: data/code.metainfo.xml.in:155 msgid "" "The currently selected result and the number of results is displayed while " "searching" msgstr "" -#: data/code.metainfo.xml.in:150 +#: data/code.metainfo.xml.in:156 msgid "The search bar now has a regular expression mode" msgstr "" -#: data/code.metainfo.xml.in:152 data/code.metainfo.xml.in:176 -#: data/code.metainfo.xml.in:192 +#: data/code.metainfo.xml.in:158 data/code.metainfo.xml.in:182 +#: data/code.metainfo.xml.in:198 msgid "Fixes:" msgstr "" -#: data/code.metainfo.xml.in:154 +#: data/code.metainfo.xml.in:160 msgid "" "It is now possible to change Git branch with untracked files present in a " "project" msgstr "" -#: data/code.metainfo.xml.in:155 +#: data/code.metainfo.xml.in:161 msgid "Crashes are prevented while searching in large projects" msgstr "" -#: data/code.metainfo.xml.in:156 +#: data/code.metainfo.xml.in:162 msgid "" "The correct document is now focused after opening Code from an external " "program" msgstr "" -#: data/code.metainfo.xml.in:157 +#: data/code.metainfo.xml.in:163 msgid "" "Line duplication is now actioned correctly if there is no selection present" msgstr "" -#: data/code.metainfo.xml.in:158 +#: data/code.metainfo.xml.in:164 msgid "Code no longer crashes when asked to open an unknown URI format" msgstr "" -#: data/code.metainfo.xml.in:171 +#: data/code.metainfo.xml.in:177 msgid "" "Projects with the same name now include their parent folder name as well" msgstr "" -#: data/code.metainfo.xml.in:172 +#: data/code.metainfo.xml.in:178 msgid "" "When scrolling to search results, overshoot slightly for better visibility" msgstr "" -#: data/code.metainfo.xml.in:173 +#: data/code.metainfo.xml.in:179 msgid "Use the FileChooser portal instead of the one from GTK" msgstr "" -#: data/code.metainfo.xml.in:174 +#: data/code.metainfo.xml.in:180 msgid "Center the global search dialog over the main Code window" msgstr "" -#: data/code.metainfo.xml.in:178 +#: data/code.metainfo.xml.in:184 msgid "Fix visibility of Terminal button on Welcome page" msgstr "" -#: data/code.metainfo.xml.in:179 +#: data/code.metainfo.xml.in:185 msgid "" "Fix some keyboard shortcuts affecting unfocused Document instead of focused " "Terminal" msgstr "" -#: data/code.metainfo.xml.in:180 +#: data/code.metainfo.xml.in:186 msgid "" "Close Terminal if shell exited and create new Terminal if re-opened with no " "shell" msgstr "" -#: data/code.metainfo.xml.in:184 +#: data/code.metainfo.xml.in:190 msgid "\"Visible whitespace\" combobox is now a switch" msgstr "" -#: data/code.metainfo.xml.in:194 +#: data/code.metainfo.xml.in:200 msgid "Fix crash when creating new window from tab drop" msgstr "" -#: data/code.metainfo.xml.in:195 +#: data/code.metainfo.xml.in:201 msgid "Ensure files created from the sidebar are automatically opened" msgstr "" -#: data/code.metainfo.xml.in:199 +#: data/code.metainfo.xml.in:205 msgid "Hide project chooser button when hiding sidebar" msgstr "" -#: data/code.metainfo.xml.in:203 +#: data/code.metainfo.xml.in:209 msgid "Ensure all copy is translatable" msgstr "" diff --git a/po/extra/bg.po b/po/extra/bg.po index e8d89ba5d1..ddddca91a3 100644 --- a/po/extra/bg.po +++ b/po/extra/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-18 08:10+0000\n" +"POT-Creation-Date: 2023-08-01 20:46+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Bulgarian