From dca3a350a61e784e049ac012e4396158cd2028df Mon Sep 17 00:00:00 2001 From: Italo Felipe Capasso Ballesteros Date: Wed, 5 Nov 2025 01:06:03 +0000 Subject: [PATCH 01/94] Translated using Weblate (Spanish) Currently translated at 100.0% (105 of 105 strings) Translation: Code/Extra Translate-URL: https://l10n.elementaryos.org/projects/code/extra/es/ --- po/extra/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/extra/es.po b/po/extra/es.po index b96556dc8..5cb15d4da 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-29 18:21+0000\n" -"PO-Revision-Date: 2025-10-21 00:55+0000\n" +"PO-Revision-Date: 2025-11-06 01:55+0000\n" "Last-Translator: Italo Felipe Capasso Ballesteros \n" "Language-Team: Spanish \n" @@ -177,6 +177,8 @@ msgid "" "Opening a second window no longer results in duplicate project entries in " "the project chooser" msgstr "" +"Abrir una segunda ventana ya no resultará en entradas de proyecto duplicada " +"en el selector de proyectos" #: data/code.metainfo.xml.in:79 data/code.metainfo.xml.in:94 #: data/code.metainfo.xml.in:114 data/code.metainfo.xml.in:154 From a398925f6fd75f3194740ef5a7c6b0dadf069983 Mon Sep 17 00:00:00 2001 From: Loric Brevet Date: Sun, 9 Nov 2025 16:34:32 +0100 Subject: [PATCH 02/94] Guard FileView recursion against file nodes (#1661) --- src/FolderManager/FileView.vala | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/FolderManager/FileView.vala b/src/FolderManager/FileView.vala index 2bb5035b3..2ab6254d2 100644 --- a/src/FolderManager/FileView.vala +++ b/src/FolderManager/FileView.vala @@ -212,7 +212,10 @@ public class Scratch.FolderManager.FileView : Code.Widgets.SourceList, Code.Pane private unowned Code.Widgets.SourceList.Item? find_path ( Code.Widgets.SourceList.ExpandableItem list, string path, - bool expand = false) { + bool expand = false, + GLib.File? target_file = null) { + + var target = target_file ?? GLib.File.new_for_path (path); foreach (var item in list.children) { if (item is Item) { @@ -221,22 +224,23 @@ public class Scratch.FolderManager.FileView : Code.Widgets.SourceList, Code.Pane return (!)item; } - if (item is Code.Widgets.SourceList.ExpandableItem) { - var expander = item as Code.Widgets.SourceList.ExpandableItem; - if (!path.has_prefix (code_item.path)) { + if (item is FolderItem) { + var folder = item as FolderItem; + var folder_root = folder.file.file; + if (folder_root.get_relative_path (target) == null) { continue; } - if (!expander.expanded) { + if (!folder.expanded) { if (expand) { - ((FolderItem)expander).load_children (); //Synchronous - expander.expanded = true; + folder.load_children (); //Synchronous + folder.expanded = true; } else { continue; } } - unowned var recurse_item = find_path (expander, path, expand); + unowned var recurse_item = find_path (folder, path, expand, target); if (recurse_item != null) { return recurse_item; } From bd59edd097d54652043eea5131a38253a0b2f714 Mon Sep 17 00:00:00 2001 From: Loric Brevet Date: Mon, 10 Nov 2025 13:50:38 +0100 Subject: [PATCH 03/94] Disable-able Syntax Highlighting Preference (#1664) --- data/io.elementary.code.gschema.xml | 5 +++++ src/Dialogs/PreferencesDialog.vala | 1 + src/Widgets/FormatBar.vala | 2 +- src/Widgets/SourceView.vala | 3 ++- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/data/io.elementary.code.gschema.xml b/data/io.elementary.code.gschema.xml index 0f78a64f7..185986686 100644 --- a/data/io.elementary.code.gschema.xml +++ b/data/io.elementary.code.gschema.xml @@ -106,6 +106,11 @@ Highlight Matching Brackets Whether Code should highlight matching brackets. + + true + Highlight source code syntax + Whether Code should apply syntax highlighting to documents. + "For Selection" Draw spaces and tabs with symbols diff --git a/src/Dialogs/PreferencesDialog.vala b/src/Dialogs/PreferencesDialog.vala index 53288c398..ca081e591 100644 --- a/src/Dialogs/PreferencesDialog.vala +++ b/src/Dialogs/PreferencesDialog.vala @@ -110,6 +110,7 @@ public class Scratch.Dialogs.Preferences : Granite.Dialog { var editor_box = new Gtk.Box (VERTICAL, 12); editor_box.add (new Granite.HeaderLabel (_("Editor"))); editor_box.add (new SettingSwitch (_("Highlight matching brackets"), "highlight-matching-brackets")); + editor_box.add (new SettingSwitch (_("Syntax highlighting"), "syntax-highlighting")); editor_box.add (draw_spaces_box); editor_box.add (new SettingSwitch (_("Mini Map"), "show-mini-map")); editor_box.add (new SettingSwitch (_("Wrap lines"), "line-wrap")); diff --git a/src/Widgets/FormatBar.vala b/src/Widgets/FormatBar.vala index 53d4673ee..f7547fbd7 100644 --- a/src/Widgets/FormatBar.vala +++ b/src/Widgets/FormatBar.vala @@ -47,7 +47,7 @@ public class Code.FormatBar : Gtk.Box { lang_menubutton = new FormatButton () { icon = new ThemedIcon ("application-x-class-file-symbolic"), - tooltip_text = _("Syntax Highlighting") + tooltip_text = _("Document language") }; line_menubutton = new FormatButton () { diff --git a/src/Widgets/SourceView.vala b/src/Widgets/SourceView.vala index c03ddafba..a196a3409 100644 --- a/src/Widgets/SourceView.vala +++ b/src/Widgets/SourceView.vala @@ -95,7 +95,7 @@ namespace Scratch.Widgets { var source_buffer = new Gtk.SourceBuffer (null); set_buffer (source_buffer); - source_buffer.highlight_syntax = true; + source_buffer.highlight_syntax = Scratch.settings.get_boolean ("syntax-highlighting"); source_buffer.mark_set.connect (on_mark_set); source_buffer.mark_deleted.connect (on_mark_deleted); highlight_current_line = true; @@ -239,6 +239,7 @@ namespace Scratch.Widgets { insert_spaces_instead_of_tabs = Scratch.settings.get_boolean ("spaces-instead-of-tabs"); var source_buffer = (Gtk.SourceBuffer) buffer; source_buffer.highlight_matching_brackets = Scratch.settings.get_boolean ("highlight-matching-brackets"); + source_buffer.highlight_syntax = Scratch.settings.get_boolean ("syntax-highlighting"); space_drawer.enable_matrix = false; switch ((ScratchDrawSpacesState) Scratch.settings.get_enum ("draw-spaces")) { case ScratchDrawSpacesState.ALWAYS: From 200236eaccbdf7be99e0f5086496b3ce78637bc4 Mon Sep 17 00:00:00 2001 From: elementaryBot Date: Mon, 10 Nov 2025 12:52:13 +0000 Subject: [PATCH 04/94] Update translation template --- po/extra/extra.pot | 2 +- po/io.elementary.code.pot | 36 ++++++++++++++++++++---------------- po/plugins/plugins.pot | 2 +- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/po/extra/extra.pot b/po/extra/extra.pot index e620dd131..4b397f127 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/io.elementary.code.pot b/po/io.elementary.code.pot index 21d19de0b..bf6f29313 100644 --- a/po/io.elementary.code.pot +++ b/po/io.elementary.code.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.code\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -307,39 +307,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -839,7 +843,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1017,23 +1021,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/plugins/plugins.pot b/po/plugins/plugins.pot index 2e9f5cca1..ae05400c5 100644 --- a/po/plugins/plugins.pot +++ b/po/plugins/plugins.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 5f0841a6fd97a45182ce97a72f9d9f1d6c84d891 Mon Sep 17 00:00:00 2001 From: Weblate Date: Mon, 10 Nov 2025 12:52:20 +0000 Subject: [PATCH 05/94] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/ --- po/aa.po | 36 ++++++++++++++++++++---------------- po/ab.po | 36 ++++++++++++++++++++---------------- po/ae.po | 36 ++++++++++++++++++++---------------- po/af.po | 36 ++++++++++++++++++++---------------- po/ak.po | 40 +++++++++++++++++++++++----------------- po/am.po | 36 ++++++++++++++++++++---------------- po/an.po | 36 ++++++++++++++++++++---------------- po/ar.po | 42 +++++++++++++++++++++++++----------------- po/as.po | 36 ++++++++++++++++++++---------------- po/ast.po | 36 ++++++++++++++++++++---------------- po/av.po | 36 ++++++++++++++++++++---------------- po/ay.po | 36 ++++++++++++++++++++---------------- po/az.po | 40 +++++++++++++++++++++++----------------- po/ba.po | 36 ++++++++++++++++++++---------------- po/be.po | 42 +++++++++++++++++++++++++----------------- po/bg.po | 40 +++++++++++++++++++++++----------------- po/bh.po | 36 ++++++++++++++++++++---------------- po/bi.po | 36 ++++++++++++++++++++---------------- po/bm.po | 36 ++++++++++++++++++++---------------- po/bn.po | 40 +++++++++++++++++++++++----------------- po/bo.po | 36 ++++++++++++++++++++---------------- po/br.po | 36 ++++++++++++++++++++---------------- po/bs.po | 42 +++++++++++++++++++++++++----------------- po/ca.po | 42 +++++++++++++++++++++++++----------------- po/ca@valencia.po | 40 +++++++++++++++++++++++----------------- po/ce.po | 36 ++++++++++++++++++++---------------- po/ch.po | 36 ++++++++++++++++++++---------------- po/ckb.po | 42 +++++++++++++++++++++++++----------------- po/co.po | 36 ++++++++++++++++++++---------------- po/cr.po | 36 ++++++++++++++++++++---------------- po/cs.po | 42 +++++++++++++++++++++++++----------------- po/cu.po | 36 ++++++++++++++++++++---------------- po/cv.po | 36 ++++++++++++++++++++---------------- po/cy.po | 36 ++++++++++++++++++++---------------- po/da.po | 42 +++++++++++++++++++++++++----------------- po/de.po | 42 +++++++++++++++++++++++++----------------- po/dv.po | 36 ++++++++++++++++++++---------------- po/dz.po | 36 ++++++++++++++++++++---------------- po/ee.po | 36 ++++++++++++++++++++---------------- po/el.po | 42 +++++++++++++++++++++++++----------------- po/en_AU.po | 40 +++++++++++++++++++++++----------------- po/en_CA.po | 42 +++++++++++++++++++++++++----------------- po/en_GB.po | 42 +++++++++++++++++++++++++----------------- po/eo.po | 42 +++++++++++++++++++++++++----------------- po/es.po | 42 +++++++++++++++++++++++++----------------- po/et.po | 40 +++++++++++++++++++++++----------------- po/eu.po | 40 +++++++++++++++++++++++----------------- po/fa.po | 40 +++++++++++++++++++++++----------------- po/ff.po | 36 ++++++++++++++++++++---------------- po/fi.po | 42 +++++++++++++++++++++++++----------------- po/fj.po | 36 ++++++++++++++++++++---------------- po/fo.po | 36 ++++++++++++++++++++---------------- po/fr.po | 42 +++++++++++++++++++++++++----------------- po/fr_CA.po | 36 ++++++++++++++++++++---------------- po/fy.po | 36 ++++++++++++++++++++---------------- po/ga.po | 36 ++++++++++++++++++++---------------- po/gd.po | 36 ++++++++++++++++++++---------------- po/gl.po | 42 +++++++++++++++++++++++++----------------- po/gn.po | 36 ++++++++++++++++++++---------------- po/gu.po | 40 +++++++++++++++++++++++----------------- po/gv.po | 36 ++++++++++++++++++++---------------- po/ha.po | 36 ++++++++++++++++++++---------------- po/he.po | 42 +++++++++++++++++++++++++----------------- po/hi.po | 42 +++++++++++++++++++++++++----------------- po/ho.po | 36 ++++++++++++++++++++---------------- po/hr.po | 40 +++++++++++++++++++++++----------------- po/ht.po | 36 ++++++++++++++++++++---------------- po/hu.po | 42 +++++++++++++++++++++++++----------------- po/hy.po | 36 ++++++++++++++++++++---------------- po/hz.po | 36 ++++++++++++++++++++---------------- po/ia.po | 36 ++++++++++++++++++++---------------- po/id.po | 42 +++++++++++++++++++++++++----------------- po/ie.po | 36 ++++++++++++++++++++---------------- po/ig.po | 36 ++++++++++++++++++++---------------- po/ii.po | 36 ++++++++++++++++++++---------------- po/ik.po | 36 ++++++++++++++++++++---------------- po/io.po | 36 ++++++++++++++++++++---------------- po/is.po | 36 ++++++++++++++++++++---------------- po/it.po | 42 +++++++++++++++++++++++++----------------- po/iu.po | 36 ++++++++++++++++++++---------------- po/ja.po | 42 +++++++++++++++++++++++++----------------- po/jv.po | 36 ++++++++++++++++++++---------------- po/ka.po | 42 +++++++++++++++++++++++++----------------- po/kg.po | 36 ++++++++++++++++++++---------------- po/ki.po | 36 ++++++++++++++++++++---------------- po/kj.po | 36 ++++++++++++++++++++---------------- po/kk.po | 36 ++++++++++++++++++++---------------- po/kl.po | 36 ++++++++++++++++++++---------------- po/km.po | 40 +++++++++++++++++++++++----------------- po/kn.po | 36 ++++++++++++++++++++---------------- po/ko.po | 42 +++++++++++++++++++++++++----------------- po/kr.po | 36 ++++++++++++++++++++---------------- po/ks.po | 36 ++++++++++++++++++++---------------- po/ku.po | 36 ++++++++++++++++++++---------------- po/kv.po | 36 ++++++++++++++++++++---------------- po/kw.po | 36 ++++++++++++++++++++---------------- po/ky.po | 36 ++++++++++++++++++++---------------- po/la.po | 36 ++++++++++++++++++++---------------- po/lb.po | 36 ++++++++++++++++++++---------------- po/lg.po | 36 ++++++++++++++++++++---------------- po/li.po | 36 ++++++++++++++++++++---------------- po/ln.po | 36 ++++++++++++++++++++---------------- po/lo.po | 36 ++++++++++++++++++++---------------- po/lt.po | 42 +++++++++++++++++++++++++----------------- po/lu.po | 36 ++++++++++++++++++++---------------- po/lv.po | 40 +++++++++++++++++++++++----------------- po/mg.po | 36 ++++++++++++++++++++---------------- po/mh.po | 36 ++++++++++++++++++++---------------- po/mi.po | 36 ++++++++++++++++++++---------------- po/mk.po | 40 +++++++++++++++++++++++----------------- po/ml.po | 36 ++++++++++++++++++++---------------- po/mn.po | 36 ++++++++++++++++++++---------------- po/mr.po | 42 +++++++++++++++++++++++++----------------- po/ms.po | 42 +++++++++++++++++++++++++----------------- po/mt.po | 36 ++++++++++++++++++++---------------- po/my.po | 36 ++++++++++++++++++++---------------- po/na.po | 36 ++++++++++++++++++++---------------- po/nb.po | 42 +++++++++++++++++++++++++----------------- po/nd.po | 36 ++++++++++++++++++++---------------- po/ne.po | 40 +++++++++++++++++++++++----------------- po/ng.po | 36 ++++++++++++++++++++---------------- po/nl.po | 42 +++++++++++++++++++++++++----------------- po/nn.po | 42 +++++++++++++++++++++++++----------------- po/no.po | 36 ++++++++++++++++++++---------------- po/nr.po | 36 ++++++++++++++++++++---------------- po/nv.po | 36 ++++++++++++++++++++---------------- po/ny.po | 36 ++++++++++++++++++++---------------- po/oc.po | 42 +++++++++++++++++++++++++----------------- po/oj.po | 36 ++++++++++++++++++++---------------- po/om.po | 36 ++++++++++++++++++++---------------- po/or.po | 36 ++++++++++++++++++++---------------- po/os.po | 36 ++++++++++++++++++++---------------- po/pa.po | 42 +++++++++++++++++++++++++----------------- po/pi.po | 36 ++++++++++++++++++++---------------- po/pl.po | 42 +++++++++++++++++++++++++----------------- po/ps.po | 36 ++++++++++++++++++++---------------- po/pt.po | 42 +++++++++++++++++++++++++----------------- po/pt_BR.po | 42 +++++++++++++++++++++++++----------------- po/qu.po | 36 ++++++++++++++++++++---------------- po/rm.po | 36 ++++++++++++++++++++---------------- po/rn.po | 36 ++++++++++++++++++++---------------- po/ro.po | 40 +++++++++++++++++++++++----------------- po/ro_MD.po | 42 +++++++++++++++++++++++++----------------- po/ru.po | 42 +++++++++++++++++++++++++----------------- po/rue.po | 40 +++++++++++++++++++++++----------------- po/rw.po | 36 ++++++++++++++++++++---------------- po/sa.po | 36 ++++++++++++++++++++---------------- po/sc.po | 36 ++++++++++++++++++++---------------- po/sd.po | 36 ++++++++++++++++++++---------------- po/se.po | 36 ++++++++++++++++++++---------------- po/sg.po | 36 ++++++++++++++++++++---------------- po/si.po | 36 ++++++++++++++++++++---------------- po/sk.po | 42 +++++++++++++++++++++++++----------------- po/sl.po | 42 +++++++++++++++++++++++++----------------- po/sm.po | 36 ++++++++++++++++++++---------------- po/sma.po | 36 ++++++++++++++++++++---------------- po/sn.po | 36 ++++++++++++++++++++---------------- po/so.po | 36 ++++++++++++++++++++---------------- po/sq.po | 40 +++++++++++++++++++++++----------------- po/sr.po | 42 +++++++++++++++++++++++++----------------- po/ss.po | 36 ++++++++++++++++++++---------------- po/st.po | 36 ++++++++++++++++++++---------------- po/su.po | 36 ++++++++++++++++++++---------------- po/sv.po | 42 +++++++++++++++++++++++++----------------- po/sw.po | 36 ++++++++++++++++++++---------------- po/szl.po | 42 +++++++++++++++++++++++++----------------- po/ta.po | 36 ++++++++++++++++++++---------------- po/te.po | 36 ++++++++++++++++++++---------------- po/tg.po | 36 ++++++++++++++++++++---------------- po/th.po | 42 +++++++++++++++++++++++++----------------- po/ti.po | 36 ++++++++++++++++++++---------------- po/tk.po | 36 ++++++++++++++++++++---------------- po/tl.po | 40 +++++++++++++++++++++++----------------- po/tn.po | 36 ++++++++++++++++++++---------------- po/to.po | 36 ++++++++++++++++++++---------------- po/tr.po | 42 +++++++++++++++++++++++++----------------- po/ts.po | 36 ++++++++++++++++++++---------------- po/tt.po | 36 ++++++++++++++++++++---------------- po/tw.po | 36 ++++++++++++++++++++---------------- po/ty.po | 36 ++++++++++++++++++++---------------- po/ug.po | 40 +++++++++++++++++++++++----------------- po/uk.po | 42 +++++++++++++++++++++++++----------------- po/ur.po | 40 +++++++++++++++++++++++----------------- po/uz.po | 42 +++++++++++++++++++++++++----------------- po/ve.po | 36 ++++++++++++++++++++---------------- po/vi.po | 40 +++++++++++++++++++++++----------------- po/vo.po | 36 ++++++++++++++++++++---------------- po/wa.po | 36 ++++++++++++++++++++---------------- po/wo.po | 36 ++++++++++++++++++++---------------- po/xh.po | 36 ++++++++++++++++++++---------------- po/yi.po | 36 ++++++++++++++++++++---------------- po/yo.po | 36 ++++++++++++++++++++---------------- po/za.po | 36 ++++++++++++++++++++---------------- po/zh.po | 42 +++++++++++++++++++++++++----------------- po/zh_CN.po | 42 +++++++++++++++++++++++++----------------- po/zh_HANS.po | 36 ++++++++++++++++++++---------------- po/zh_HANT.po | 36 ++++++++++++++++++++---------------- po/zh_HK.po | 36 ++++++++++++++++++++---------------- po/zh_TW.po | 42 +++++++++++++++++++++++++----------------- po/zu.po | 36 ++++++++++++++++++++---------------- 200 files changed, 4311 insertions(+), 3271 deletions(-) diff --git a/po/aa.po b/po/aa.po index 4d2d24a0f..bbf2bc964 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ab.po b/po/ab.po index 4d2d24a0f..bbf2bc964 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ae.po b/po/ae.po index fafa76038..a8030f022 100644 --- a/po/ae.po +++ b/po/ae.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -294,39 +294,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -826,7 +830,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1004,23 +1008,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/af.po b/po/af.po index fdd23e505..c744c7b15 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-04-09 21:07+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Afrikaans \n" @@ -319,41 +319,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "Onderstreep bypassende hakies" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Lyn wydte gids" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Sluit" @@ -883,7 +887,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1066,25 +1070,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Teks Redigeerder" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ak.po b/po/ak.po index 51102a0f1..9139ec017 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-04-09 20:11+0000\n" "Last-Translator: aberba \n" "Language-Team: LANGUAGE \n" @@ -306,39 +306,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Ma ntwereɛ no Kola" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -874,8 +880,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Ma ntwereɛ no Kola" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1053,27 +1059,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Yi Seesei View No Fi Hɔ" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Ntwerɛyɛ Dwumadi" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/am.po b/po/am.po index 46d761325..4fa2b6e49 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:39+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Amharic \n" @@ -332,41 +332,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "ተመሳሳይ ቅንፎችን ማድመቂያ:" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "የ መስመር ስፋት ምምሪያ:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "ባህሪ" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ግንኙነት" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "ተጨማሪዎች" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "መዝጊያ" @@ -906,7 +910,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1095,27 +1099,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "የ አሁኑን መመልከቻ ማስወገጃ" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "የጽሁፍ ማረሚያ" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/an.po b/po/an.po index 160e7917a..53fd964d7 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:36+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -837,7 +841,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1015,25 +1019,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Editor de testo" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ar.po b/po/ar.po index 60c67c3fd..77abc9c4b 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-09-06 18:12+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" @@ -340,43 +340,49 @@ msgstr "المحرر" msgid "Highlight matching brackets" msgstr "إبراز الاقواس :" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "إبراز تراكيب الجمله" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "اظهر خارطة مصغرة:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "دليل سمك الخط:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "الخط" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "السلوك" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "الواجهة" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "الامتدادات" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "اغلق" @@ -959,8 +965,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "إبراز تراكيب الجمله" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "ترشيح اللغات" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1157,27 +1165,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "رتب الأسطر التي تم اختيارها" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "إحذف منطقه العرض الحاليه" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "مُحرر النصوص" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "تحويل لتعليق" diff --git a/po/as.po b/po/as.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ast.po b/po/ast.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/av.po b/po/av.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ay.po b/po/ay.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/az.po b/po/az.po index 6b5530006..4a1fcb393 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+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" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/be.po b/po/be.po index bc9afc60f..4ca735106 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-06-29 18:55+0000\n" "Last-Translator: lenify \n" "Language-Team: Belarusian \n" "Language-Team: Bulgarian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/bi.po b/po/bi.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/bm.po b/po/bm.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/bn.po b/po/bn.po index 6c5b275cd..c925ea4cb 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-01-21 09:06+0000\n" "Last-Translator: Hasan Sumon \n" "Language-Team: LANGUAGE \n" @@ -330,43 +330,49 @@ msgstr "সম্পাদক" msgid "Highlight matching brackets" msgstr "একই ধরনের ব্র্যাকেট হাইলাইট করুনঃ" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "বাক্যরীতি হাইলাইট করা" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "ছোট ম্যাপ দেখানঃ" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "লাইন এর প্রস্থ নির্দেশিকাঃ" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "বৈশিষ্ট্য" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ইন্টারফেস" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "এক্সটেনশানসমূহ" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "বন্ধ করুন" @@ -927,8 +933,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "বাক্যরীতি হাইলাইট করা" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1118,27 +1124,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "বর্তমান ভিউ সরিয়ে দিন" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "টেক্সট ইডিটর" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/bo.po b/po/bo.po index 61f6d1d81..b6851674d 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-08-29 15:22+0000\n" "Last-Translator: གངས་རྒྱན། \n" "Language-Team: Tibetan \n" @@ -304,39 +304,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -830,7 +834,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1008,23 +1012,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/br.po b/po/br.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/bs.po b/po/bs.po index 4c5294785..721062f50 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+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-Team: Catalan \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -837,7 +841,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1015,23 +1019,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ch.po b/po/ch.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ckb.po b/po/ckb.po index d6cc4d111..f1257c75a 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+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" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/cr.po b/po/cr.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/cs.po b/po/cs.po index 881978374..42c9a95ec 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2023-07-19 08:07+0000\n" "Last-Translator: Jakub Kyzr \n" "Language-Team: Czech \n" @@ -335,43 +335,49 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "Zvýraznit odpovídající závorky:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Zvýraznění syntaxe" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Zobrazit mini mapu:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Vodítko délky řádku:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Písmo" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Chování" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Rozhraní" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Rozšíření" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Zavřít" @@ -908,8 +914,10 @@ msgid "Duplicate Tab" msgstr "Uložit kopii…" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Zvýraznění syntaxe" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtrovat jazyky" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1090,27 +1098,27 @@ msgstr "%d z %d" msgid "no results" msgstr "nic nenalezeno" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Seřadit vybrané řádky" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Odstranit současné zobrazení" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Textový editor" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Zobraz/nezobraz. komentář" diff --git a/po/cu.po b/po/cu.po index fafa76038..a8030f022 100644 --- a/po/cu.po +++ b/po/cu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -294,39 +294,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -826,7 +830,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1004,23 +1008,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/cv.po b/po/cv.po index 31fab52ad..03991e41a 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:37+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -851,7 +855,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1029,25 +1033,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Текст çырмалли" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/cy.po b/po/cy.po index de9e00031..2b11cb6a9 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/da.po b/po/da.po index 31964a859..f1c2d2ca0 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-05-30 10:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" @@ -346,43 +346,49 @@ msgstr "Redigering" msgid "Highlight matching brackets" msgstr "Fremhæv matchende klammer (brackets):" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Syntaksfremhævning" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Vis minikort:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Linje bredde guide:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Font" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Opførsel" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Brugergrænseflade" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Udvidelser" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Luk" @@ -946,8 +952,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Syntaksfremhævning" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtrér sprog" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1134,27 +1142,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Sorter Valgte Linjer" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Fjern nuværende visning" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Tekstredigeringsprogram" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Slå Kommentarer til/fra" diff --git a/po/de.po b/po/de.po index cb72d02e0..c23a87707 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-04-11 19:55+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/dz.po b/po/dz.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ee.po b/po/ee.po index e3c2ab653..de73c7803 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/el.po b/po/el.po index c8a00b35e..17b9bfbc7 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Greek \n" @@ -341,41 +341,47 @@ msgstr "Συντάκτης" msgid "Highlight matching brackets" msgstr "Επισήμανση ζεύγων αγκυλών:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Επισήμανση σύνταξης" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Οδηγός πλάτους γραμμής:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Γραμματοσειρά" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Συμπεριφορά" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Περιβάλλον Χρήστη" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Επεκτάσεις" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Κλείσιμο" @@ -940,8 +946,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Επισήμανση σύνταξης" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Φιλτράρετε τις γλώσσες" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1131,27 +1139,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Αφαίρεση Τρέχουσας Προβολής" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Επεξεργαστής Κειμένου" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/en_AU.po b/po/en_AU.po index 429fdeeff..e7ebd57b6 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+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" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" @@ -339,43 +339,49 @@ msgstr "Redaktor" msgid "Highlight matching brackets" msgstr "Sobivuste esiletõstmine:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Formaat" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Pisikuva kuvamine:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Abistav lehe laius:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Käitumine" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Välimus" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Pluginad" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Sulge" @@ -938,8 +944,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Formaat" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1129,27 +1135,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Sulge külgpaneel" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Tekstiredaktor" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/eu.po b/po/eu.po index 6c6c2dddd..e9fe34222 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-09-11 21:29+0000\n" "Last-Translator: Thadah Denyse \n" "Language-Team: Basque \n" @@ -339,41 +339,47 @@ msgstr "Editorea" msgid "Highlight matching brackets" msgstr "Nabarmendu parentesi pareak:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Sintaxiaren nabarmentzea" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Lerro-zabaleraren gida:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Portaera" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interfazea" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Hedapenak" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Itxi" @@ -927,8 +933,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Sintaxiaren nabarmentzea" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1118,27 +1124,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Kendu uneko bista" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Testu-editorea" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/fa.po b/po/fa.po index a407648fa..1177a55cd 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Persian \n" @@ -336,41 +336,47 @@ msgstr "" msgid "Highlight matching brackets" msgstr "نمایش کروشه مطابق:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "نمایش نگارش" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "پهنای خط راهنما:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "رفتار" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "رابط" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "افزونه‌ها" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "بستن" @@ -910,8 +916,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "نمایش نگارش" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1098,27 +1104,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "حذف نمای کنونی" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "ویرایشگر متن" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "نمایش دیدگاه" diff --git a/po/ff.po b/po/ff.po index e3c2ab653..de73c7803 100644 --- a/po/ff.po +++ b/po/ff.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/fi.po b/po/fi.po index 4e8d394af..cb500db05 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-09-29 19:55+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/fo.po b/po/fo.po index e3c2ab653..de73c7803 100644 --- a/po/fo.po +++ b/po/fo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/fr.po b/po/fr.po index cf1049ae2..2e914bcae 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-18 07:55+0000\n" "Last-Translator: Nathan \n" "Language-Team: French \n" "Language-Team: French (Canada) \n" "Language-Team: Frisian \n" @@ -317,39 +317,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Slute" @@ -868,7 +872,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1047,25 +1051,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Aktive werjefte wiskje" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ga.po b/po/ga.po index e3c2ab653..de73c7803 100644 --- a/po/ga.po +++ b/po/ga.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/gd.po b/po/gd.po index e3c2ab653..de73c7803 100644 --- a/po/gd.po +++ b/po/gd.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/gl.po b/po/gl.po index f94c12c15..3983b302b 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-02-25 20:09+0000\n" "Last-Translator: Daniel R. \n" "Language-Team: Galician \n" @@ -341,43 +341,49 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "Resaltar a parella de corchetes:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Realce da sintaxe" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Mostrar minimapa:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Guía de largura da liña:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Letra" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Comportamento" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interface" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Extensións" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Pechar" @@ -941,8 +947,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Realce da sintaxe" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtrar linguaxes" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1129,27 +1137,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Ordenar liñas seleccionadas" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Eliminar a vista actual" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Editor de textos" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Conmutar comentario" diff --git a/po/gn.po b/po/gn.po index e3c2ab653..de73c7803 100644 --- a/po/gn.po +++ b/po/gn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/gu.po b/po/gu.po index 05e953e97..0359ee52a 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:37+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Gujarati \n" @@ -329,41 +329,47 @@ msgstr "" msgid "Highlight matching brackets" msgstr "પ્રકાશિત બંધબેસતા કૌંસ" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "વાક્યરચનાને પ્રકાશિત કરી રહ્યુ છે" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "વાક્ય પહોળાઈની માર્ગદર્શિકા" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "વર્તણુક" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ઇન્ટરફેસ" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "એક્સ્ટેન્શન્સ" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "બંધ કરો" @@ -886,8 +892,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "વાક્યરચનાને પ્રકાશિત કરી રહ્યુ છે" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1072,25 +1078,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "વર્તમાન દેખાવને દુર કરો" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/gv.po b/po/gv.po index e3c2ab653..de73c7803 100644 --- a/po/gv.po +++ b/po/gv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ha.po b/po/ha.po index c52a2c6a0..6b59adf21 100644 --- a/po/ha.po +++ b/po/ha.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/he.po b/po/he.po index f4abda024..da7fb9550 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-29 18:21+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" @@ -336,43 +336,49 @@ msgstr "एडीटर" msgid "Highlight matching brackets" msgstr "सामान कोष्ठकों को हाईलाइट करें:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "सिंटेक्स हाईलाइटिंग" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "लघु मानचित्र चित्रित करें:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "पंक्ति चौड़ाई गाइड:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "फॉन्ट" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "व्‍यवहार" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "इंटरफ़ेस" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "एक्सटेंशन्स" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "बंद करें" @@ -929,8 +935,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "सिंटेक्स हाईलाइटिंग" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "भाषाएं फ़िल्टर करें" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1117,27 +1125,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "चयनित लाइनों को क्रमबद्ध करें" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "वर्तमान दृश्य को निकालें" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "लेख संपादक" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "टिप्पणी टॉगल करें" diff --git a/po/ho.po b/po/ho.po index c52a2c6a0..6b59adf21 100644 --- a/po/ho.po +++ b/po/ho.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/hr.po b/po/hr.po index 1a1891923..54e9bd495 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-08-16 12:16+0000\n" "Last-Translator: gogogogi \n" "Language-Team: Croatian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/hu.po b/po/hu.po index 3a738094b..4176e0198 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-18 07:55+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Փակել" @@ -838,7 +842,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1016,23 +1020,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/hz.po b/po/hz.po index c52a2c6a0..6b59adf21 100644 --- a/po/hz.po +++ b/po/hz.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ia.po b/po/ia.po index c52a2c6a0..6b59adf21 100644 --- a/po/ia.po +++ b/po/ia.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/id.po b/po/id.po index 5fc7e5b8d..b4f117462 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2023-05-20 16:06+0000\n" "Last-Translator: Mas Ahmad Muhammad \n" "Language-Team: Indonesian \n" "Language-Team: Igbo \n" @@ -303,39 +303,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -830,7 +834,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1008,23 +1012,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ii.po b/po/ii.po index c52a2c6a0..6b59adf21 100644 --- a/po/ii.po +++ b/po/ii.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ik.po b/po/ik.po index c52a2c6a0..6b59adf21 100644 --- a/po/ik.po +++ b/po/ik.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/io.po b/po/io.po index c52a2c6a0..6b59adf21 100644 --- a/po/io.po +++ b/po/io.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/is.po b/po/is.po index c52a2c6a0..6b59adf21 100644 --- a/po/is.po +++ b/po/is.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/it.po b/po/it.po index c7393f8dc..7fc3ac2b3 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-10-23 17:15+0000\n" "Last-Translator: Fabio Zaramella \n" "Language-Team: Italian \n" @@ -346,43 +346,49 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "Evidenzia parentesi corrispondenti:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Evidenziazione sintassi" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Mostra minimappa:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Linea guida di larghezza:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Tipo di carattere" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Azioni" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interfaccia" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Estensioni" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Chiudi" @@ -948,8 +954,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Evidenziazione sintassi" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtra i linguaggi" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1136,27 +1144,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Ordina le linee selezionate" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Rimuovi vista corrente" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Editor di testi" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Attiva o disattiva il commento" diff --git a/po/iu.po b/po/iu.po index c52a2c6a0..6b59adf21 100644 --- a/po/iu.po +++ b/po/iu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ja.po b/po/ja.po index 6273119d6..603dd99d4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-25 00:24+0000\n" "Last-Translator: Ryo Nakano \n" "Language-Team: Japanese \n" "Language-Team: Javanese \n" @@ -312,39 +312,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Tutup" @@ -860,7 +864,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1041,25 +1045,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Ngganti tulisan" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ka.po b/po/ka.po index 4c2577a85..562a494ac 100644 --- a/po/ka.po +++ b/po/ka.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-25 00:24+0000\n" "Last-Translator: NorwayFun \n" "Language-Team: Georgian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ki.po b/po/ki.po index c52a2c6a0..6b59adf21 100644 --- a/po/ki.po +++ b/po/ki.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/kj.po b/po/kj.po index c52a2c6a0..6b59adf21 100644 --- a/po/kj.po +++ b/po/kj.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/kk.po b/po/kk.po index e55f73211..bf0146f79 100644 --- a/po/kk.po +++ b/po/kk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-07-08 22:28+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Тәртібі" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Интерфейс" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Кеңейтулер" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Жабу" @@ -839,7 +843,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1017,23 +1021,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/kl.po b/po/kl.po index c52a2c6a0..6b59adf21 100644 --- a/po/kl.po +++ b/po/kl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/km.po b/po/km.po index cce3f2c4e..529955ca4 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:37+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Khmer \n" @@ -330,39 +330,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "បន្លិច​តង្កៀប​ដែល​ផ្គូផ្គង ៖" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "ការ​បន្លិច​វាក្យសម្ពន្ធ" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "ឥរិយាបថ" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ចំណុច​ប្រទាក់" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "ផ្នែក​បន្ថែម" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "បិទ" @@ -894,8 +900,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "ការ​បន្លិច​វាក្យសម្ពន្ធ" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1082,27 +1088,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "យក​ទិដ្ឋភាព​បច្ចុប្បន្ន​ចេញ" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "កម្ម​វិធី​និពន្ធ​អត្ថបទ" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/kn.po b/po/kn.po index 9d97ca9a0..f7804ac1e 100644 --- a/po/kn.po +++ b/po/kn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-06-05 00:05+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Kannada \n" "Language-Team: Korean \n" @@ -342,43 +342,49 @@ msgstr "편집기" msgid "Highlight matching brackets" msgstr "상응하는 괄호 강조하기:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "구문 강조" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "미니맵 표시:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "줄 폭 가이드:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "글꼴" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "동작" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "사용자 환경" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "확장 기능" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "닫기" @@ -927,8 +933,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "구문 강조" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "언어 필터링" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1117,27 +1125,27 @@ msgstr "%d / %d" msgid "no results" msgstr "결과 없음" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "선택한 줄 정렬" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "이 페이지 닫기" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "텍스트 편집기" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "코멘트 여닫기" diff --git a/po/kr.po b/po/kr.po index c52a2c6a0..6b59adf21 100644 --- a/po/kr.po +++ b/po/kr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ks.po b/po/ks.po index c52a2c6a0..6b59adf21 100644 --- a/po/ks.po +++ b/po/ks.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ku.po b/po/ku.po index 9efdbfaca..1337df682 100644 --- a/po/ku.po +++ b/po/ku.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-06-01 00:06+0000\n" "Last-Translator: Rokar \n" "Language-Team: Kurdish \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/kw.po b/po/kw.po index e3c2ab653..de73c7803 100644 --- a/po/kw.po +++ b/po/kw.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ky.po b/po/ky.po index c52a2c6a0..6b59adf21 100644 --- a/po/ky.po +++ b/po/ky.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/la.po b/po/la.po index c52a2c6a0..6b59adf21 100644 --- a/po/la.po +++ b/po/la.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/lb.po b/po/lb.po index 42106c0a4..abb6bdc2a 100644 --- a/po/lb.po +++ b/po/lb.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-08-09 15:06+0000\n" "Last-Translator: Yvo Marques \n" "Language-Team: Luxembourgish \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/li.po b/po/li.po index c52a2c6a0..6b59adf21 100644 --- a/po/li.po +++ b/po/li.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ln.po b/po/ln.po index c52a2c6a0..6b59adf21 100644 --- a/po/ln.po +++ b/po/ln.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/lo.po b/po/lo.po index c52a2c6a0..6b59adf21 100644 --- a/po/lo.po +++ b/po/lo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/lt.po b/po/lt.po index 3deb4b20c..6683efa49 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-10-05 21:23+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/lv.po b/po/lv.po index 686dde056..d22c0e77f 100644 --- a/po/lv.po +++ b/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Latvian \n" @@ -335,43 +335,49 @@ msgstr "Redaktors" msgid "Highlight matching brackets" msgstr "Izvelt atbilstošās iekavas:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Sintakses Izcelšana" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Rādīt mini karti:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Rindas platuma norāde:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Izturēšanās" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Saskarne" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Paplašinājumi" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Aizvērt" @@ -928,8 +934,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Sintakses Izcelšana" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1117,27 +1123,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Noņemt pašreizējo skatu" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Teksta redaktors" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mg.po b/po/mg.po index c52a2c6a0..6b59adf21 100644 --- a/po/mg.po +++ b/po/mg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mh.po b/po/mh.po index c52a2c6a0..6b59adf21 100644 --- a/po/mh.po +++ b/po/mh.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mi.po b/po/mi.po index c52a2c6a0..6b59adf21 100644 --- a/po/mi.po +++ b/po/mi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mk.po b/po/mk.po index 8ead0cb7f..88dce8f41 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-05-03 15:08+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Macedonian \n" @@ -324,39 +324,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Означување на синтакса" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Однесување" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Интерфејс" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Екстензии" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Затвори" @@ -898,8 +904,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Означување на синтакса" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1086,27 +1092,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Отстрани го сегашниот поглед" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Уредувач на текст" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ml.po b/po/ml.po index 9afcf2e13..01f551342 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-05-31 16:31+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Malayalam \n" @@ -307,39 +307,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -839,7 +843,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1017,23 +1021,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mn.po b/po/mn.po index de9e00031..2b11cb6a9 100644 --- a/po/mn.po +++ b/po/mn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mr.po b/po/mr.po index 3e1581a72..7e468fe58 100644 --- a/po/mr.po +++ b/po/mr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-11-28 22:16+0000\n" "Last-Translator: Prachi Joshi \n" "Language-Team: Marathi \n" @@ -336,43 +336,49 @@ msgstr "एडीटर" msgid "Highlight matching brackets" msgstr "सध्याची ओळ हायलाईट करा:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "सिंटेक्स हाईलाइटिंग" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "मिनी मॅप दाखवा:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "ओळीच्या रूंदीची गाईड:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "फॉन्ट" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "व्‍यवहार" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "इंटरफेस" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "एक्सटेंशन्स" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "बंद करा" @@ -932,8 +938,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "सिंटेक्स हाईलाइटिंग" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "भाषा फिल्टर करा" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1120,25 +1128,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "निवडलेल्या ओळी क्रमबद्ध करा" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "आत्ताची मांडणी काढून टाका" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "टिप्पणी टॉगल करा" diff --git a/po/ms.po b/po/ms.po index d10be37cd..a653ed480 100644 --- a/po/ms.po +++ b/po/ms.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-06-13 00:02+0000\n" "Last-Translator: Timothy \n" "Language-Team: Malay \n" @@ -341,43 +341,49 @@ msgstr "Penyunting" msgid "Highlight matching brackets" msgstr "Sorot kurungan sepadan:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Penyorotan Sintaks" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Tunjuk Peta Mini:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Panduan lebar baris:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Huruf" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Kelakuan" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Antaramuka" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Sambungan" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Tutup" @@ -936,8 +942,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Penyorotan Sintaks" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Menapis bahasa-bahasa" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1122,28 +1130,28 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 #, fuzzy msgid "Sort Selected Lines" msgstr "Bagi teks diserlahkan" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Buang Paparan Semasa" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Penyunting Teks" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/mt.po b/po/mt.po index de9e00031..2b11cb6a9 100644 --- a/po/mt.po +++ b/po/mt.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/my.po b/po/my.po index d988708e0..7e39e177b 100644 --- a/po/my.po +++ b/po/my.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:38+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -853,7 +857,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1031,25 +1035,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "စာသားအယ်ဒီတာ" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/na.po b/po/na.po index de9e00031..2b11cb6a9 100644 --- a/po/na.po +++ b/po/na.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/nb.po b/po/nb.po index 45ed7daa2..7504992d1 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2024-06-16 12:29+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ne.po b/po/ne.po index 8e1bcb529..db8285c22 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-01-22 12:51+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Nepali \n" @@ -330,39 +330,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "कोष्ठकहरूको जोडलाई हाइलाईट" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "वाक्य-संरचना हाइलाइटिङ" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "व्यवहार" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "इन्टरफेस" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "विस्तारहरू" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "बन्द गर्नुहोस्" @@ -890,8 +896,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "वाक्य-संरचना हाइलाइटिङ" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1078,27 +1084,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "अहिलेको द्रिश्य हटाउनुहोस" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "पाठ सम्पादक" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ng.po b/po/ng.po index de9e00031..2b11cb6a9 100644 --- a/po/ng.po +++ b/po/ng.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/nl.po b/po/nl.po index 819e171d9..38d22da34 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2024-02-12 06:41+0000\n" "Last-Translator: Dennis ten Hoove \n" "Language-Team: Dutch \n" @@ -332,43 +332,49 @@ msgstr "Bewerker" msgid "Highlight matching brackets" msgstr "Markeer overeenkomende haakjes:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Syntaxiskleuring" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Toon overzicht:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Rechtermarge:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Lettertype" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Gedrag" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Uiterlijk" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Uitbreidingen" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Sluiten" @@ -905,8 +911,10 @@ msgid "Duplicate Tab" msgstr "Duplicaat opslaan…" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Syntaxiskleuring" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filter talen" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1085,27 +1093,27 @@ msgstr "%d van %d" msgid "no results" msgstr "geen resultaten" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Sorteer geselecteerde lijnen" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Huidige weergave verwijderen" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Tekstverwerker" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Commentaar in- of uitschakelen" diff --git a/po/nn.po b/po/nn.po index 475cd4963..2fdaac3a2 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-07-17 12:12+0000\n" "Last-Translator: Martin Myrvold \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/nv.po b/po/nv.po index de9e00031..2b11cb6a9 100644 --- a/po/nv.po +++ b/po/nv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ny.po b/po/ny.po index de9e00031..2b11cb6a9 100644 --- a/po/ny.po +++ b/po/ny.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/oc.po b/po/oc.po index 1b5cfc51a..5c99c576c 100644 --- a/po/oc.po +++ b/po/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-09-22 14:14+0000\n" "Last-Translator: Mejans \n" "Language-Team: Occitan \n" @@ -317,39 +317,45 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Coloracion sintaxica" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Poliça" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Comportament" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interfàcia" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Extensions" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Tampar" @@ -882,8 +888,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Coloracion sintaxica" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtrar las lengas" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1064,23 +1072,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/oj.po b/po/oj.po index de9e00031..2b11cb6a9 100644 --- a/po/oj.po +++ b/po/oj.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/om.po b/po/om.po index de9e00031..2b11cb6a9 100644 --- a/po/om.po +++ b/po/om.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/or.po b/po/or.po index de9e00031..2b11cb6a9 100644 --- a/po/or.po +++ b/po/or.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/os.po b/po/os.po index de9e00031..2b11cb6a9 100644 --- a/po/os.po +++ b/po/os.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/pa.po b/po/pa.po index 5c4606b20..50fd07e20 100644 --- a/po/pa.po +++ b/po/pa.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-08-16 03:26+0000\n" "Last-Translator: elSolus \n" "Language-Team: Punjabi \n" @@ -330,43 +330,49 @@ msgstr "ਐਡੀਟਰ" msgid "Highlight matching brackets" msgstr "ਮੇਲ ਖਾਂਦੀਆਂ ਬਰੈਕਟਾਂ ਨੂੰ ਉਜਾਗਰ ਕਰੋ:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "ਢਾਂਚਾ ਉਜਾਗਰ ਕਰਨਾ" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "ਮਿਨੀ ਨਕਸ਼ਾ ਵਿਖਾਓ:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "ਲਾਈਨ ਦੀ ਚੌੜਾਈ ਦਾ ਰਹਿਬਰ:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "ਫੌਂਟ" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "ਰਵੱਈਆ" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ਇੰਟਰਫ਼ੇਸ" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "ਵਾਧਾ ਕਰਨ ਵਾਲ਼ੇ" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "ਬੰਦ ਕਰੋ" @@ -914,8 +920,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "ਢਾਂਚਾ ਉਜਾਗਰ ਕਰਨਾ" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "ਬੋਲੀਆਂ ਛਾਣੋ" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1104,23 +1112,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "ਚੁਣੀਆਂ ਲਾਈਨਾਂ ਨੂੰ ਤਰਤੀਬ ਦਿਓ" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "ਟਿੱਪਣੀ ਨੂੰ ਬੰਦ ਜਾਂ ਚਾਲੂ ਕਰੋ" diff --git a/po/pi.po b/po/pi.po index fafa76038..a8030f022 100644 --- a/po/pi.po +++ b/po/pi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -294,39 +294,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -826,7 +830,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1004,23 +1008,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/pl.po b/po/pl.po index 8e43bf58d..edf48f8d2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-07-07 18:55+0000\n" "Last-Translator: Marcin Serwin \n" "Language-Team: Polish \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -842,7 +846,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1020,25 +1024,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "ليک سمونګر" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/pt.po b/po/pt.po index acbbdd53c..1c5425ba4 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-05-03 18:55+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/rm.po b/po/rm.po index de9e00031..2b11cb6a9 100644 --- a/po/rm.po +++ b/po/rm.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/rn.po b/po/rn.po index de9e00031..2b11cb6a9 100644 --- a/po/rn.po +++ b/po/rn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ro.po b/po/ro.po index fe876bcad..f8a781c0d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-02-11 08:41+0000\n" "Last-Translator: Silviu Popescu \n" "Language-Team: Romanian \n" @@ -344,43 +344,49 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "Marchează parantezele potrivite:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Evidențiere sitaxă" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Arată Mini Harta:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Ghid pentru lungimea liniei:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Comportament" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interfaţă" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Extensii" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Închide" @@ -949,8 +955,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Evidențiere sitaxă" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1140,27 +1146,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Elimină vizualizarea actuală" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Editor de text" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ro_MD.po b/po/ro_MD.po index aae7e3282..a9cace236 100644 --- a/po/ro_MD.po +++ b/po/ro_MD.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-05-26 07:39+0000\n" "Last-Translator: Romanic Ion Nicușor \n" "Language-Team: Moldovan \n" "Language-Team: Russian \n" "Language-Team: Rusyn \n" @@ -330,39 +330,45 @@ msgstr "" msgid "Highlight matching brackets" msgstr "Уділити сись рядок:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Підсвіченя синтаксису" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Поведінка" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Інтерфейс" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Розширеня" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Затворити" @@ -891,8 +897,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Підсвіченя синтаксису" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1079,27 +1085,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Одстранити типирішній обращик" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Текстовий едітор" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/rw.po b/po/rw.po index c52a2c6a0..6b59adf21 100644 --- a/po/rw.po +++ b/po/rw.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sa.po b/po/sa.po index de9e00031..2b11cb6a9 100644 --- a/po/sa.po +++ b/po/sa.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sc.po b/po/sc.po index de9e00031..2b11cb6a9 100644 --- a/po/sc.po +++ b/po/sc.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sd.po b/po/sd.po index de9e00031..2b11cb6a9 100644 --- a/po/sd.po +++ b/po/sd.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/se.po b/po/se.po index de9e00031..2b11cb6a9 100644 --- a/po/se.po +++ b/po/se.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sg.po b/po/sg.po index de9e00031..2b11cb6a9 100644 --- a/po/sg.po +++ b/po/sg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/si.po b/po/si.po index dc20558d8..bec93d986 100644 --- a/po/si.po +++ b/po/si.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-03-04 17:58+0000\n" "Last-Translator: HelaBasa \n" "Language-Team: Sinhala \n" @@ -319,43 +319,47 @@ msgstr "සංස්කාරක" msgid "Highlight matching brackets" msgstr "ගැලපෙන වරහන් උද්දීපනය කරන්න:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "කුඩා සිතියම පෙන්වන්න:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "පේලි පරතර යොමුව:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "අකුරු වර්ගය" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "හැසිරීම" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "අතුරුමුහුණත" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "දිගු" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "වසන්න" @@ -883,7 +887,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1069,24 +1073,24 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 #, fuzzy msgid "Sort Selected Lines" msgstr "තෝරාගත් පාඨය සඳහා" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sk.po b/po/sk.po index 7a31e087d..e54e5daa5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2022-12-26 20:25+0000\n" "Last-Translator: JohnDumpling \n" "Language-Team: Slovak \n" @@ -344,43 +344,49 @@ msgstr "Editor" msgid "Highlight matching brackets" msgstr "Zvýrazňovať zodpovedajúce zátvorky:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Zvýrazňovanie syntaxe" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Zobraziť minimapu:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Vodidlo dĺžky riadku:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Písmo" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Správanie" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Rozhranie" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Rozšírenia" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Zatvoriť" @@ -940,8 +946,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Zvýrazňovanie syntaxe" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Filtrovať jazyky" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1134,27 +1142,27 @@ msgstr "%d z %d" msgid "no results" msgstr "žiadne výsledky" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Zoradiť vybrané riadky" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Odstrániť aktuálne zobrazenie" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Textový editor" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Zobraziť/Skryť komentár" diff --git a/po/sl.po b/po/sl.po index 39f114aa7..9210e0d63 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-02-13 19:56+0000\n" "Last-Translator: Marko \n" "Language-Team: Slovenian \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sma.po b/po/sma.po index d5b0eebe0..bd674a54f 100644 --- a/po/sma.po +++ b/po/sma.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:36+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Southern Sami \n" @@ -307,39 +307,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Dahpedh" @@ -843,7 +847,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1021,23 +1025,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sn.po b/po/sn.po index de9e00031..2b11cb6a9 100644 --- a/po/sn.po +++ b/po/sn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/so.po b/po/so.po index de9e00031..2b11cb6a9 100644 --- a/po/so.po +++ b/po/so.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sq.po b/po/sq.po index bd1e6fcf2..9529b0410 100644 --- a/po/sq.po +++ b/po/sq.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-09-02 08:23+0000\n" "Last-Translator: Indrit Bashkimi \n" "Language-Team: Albanian \n" @@ -336,43 +336,49 @@ msgstr "" msgid "Highlight matching brackets" msgstr "Vënia në dukje e kllapave përkatëse:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Vënia në dukje e sintaksës" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Shfaq hartën e vogël:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Vijë udhëzuese për gjerësisë:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Sjellja" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Ndërfaqja" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Prapashtesat" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Mbyll" @@ -934,8 +940,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Vënia në dukje e sintaksës" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1125,27 +1131,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Hiq pamjen e tanishme" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Përpunues Tekstesh" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sr.po b/po/sr.po index b5253b5f2..80f061394 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-02-15 11:35+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" @@ -347,43 +347,49 @@ msgstr "Уређивач" msgid "Highlight matching brackets" msgstr "Истакни одговарајуће заграде:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Истицање синтаксе" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Прикажи малу мапу:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Ширина линије за:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Слова" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Понашање" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Сучеље" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Проширења" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Затвори" @@ -950,8 +956,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Истицање синтаксе" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Издвој језике" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1140,27 +1148,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Поређај изабране редове" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "Уклони тренутни приказ" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Уређивач текста" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Окини напомену" diff --git a/po/ss.po b/po/ss.po index de9e00031..2b11cb6a9 100644 --- a/po/ss.po +++ b/po/ss.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/st.po b/po/st.po index de9e00031..2b11cb6a9 100644 --- a/po/st.po +++ b/po/st.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/su.po b/po/su.po index f34acf3e6..805f7de62 100644 --- a/po/su.po +++ b/po/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-01-13 08:24+0000\n" "Last-Translator: Nur Ikhsan Azizudin \n" "Language-Team: Sundanese \n" @@ -309,39 +309,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Kabiasaan" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Tutup" @@ -846,7 +850,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1026,23 +1030,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/sv.po b/po/sv.po index a85df26bd..35162baa3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-29 18:21+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/szl.po b/po/szl.po index 10d57816b..312e1dc00 100644 --- a/po/szl.po +++ b/po/szl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-06-12 19:11+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \n" "Language-Team: Tamil \n" @@ -309,39 +309,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "மூடு" @@ -861,7 +865,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1039,25 +1043,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "உரை தொகுப்பான்" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/te.po b/po/te.po index 827144c3d..01c0817b6 100644 --- a/po/te.po +++ b/po/te.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-21 13:38+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -304,39 +304,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -842,7 +846,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1021,23 +1025,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tg.po b/po/tg.po index de9e00031..2b11cb6a9 100644 --- a/po/tg.po +++ b/po/tg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/th.po b/po/th.po index d9eb0f2f4..10ca2de35 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-02-04 01:16+0000\n" "Last-Translator: Aefgh Threenine \n" "Language-Team: Thai \n" @@ -340,43 +340,49 @@ msgstr "เครื่องมือแก้ไข" msgid "Highlight matching brackets" msgstr "แสดงแถบสี ณ ส่วนที่ตรงกัน:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "การเน้นไวยากรณ์" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "แสดงแผนที่ขนาดเล็ก:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "เส้นพร้อมไกด์:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "แบบอักษร" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "พฤติกรรม" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "ส่วนติดต่อกับผู้ใช้" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "ส่วนขยาย" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "ปิด" @@ -911,8 +917,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "การเน้นไวยากรณ์" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "กรองภาษา" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1097,27 +1105,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "ลบมุมมองปัจจุบัน" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "โปรแกรมแก้ไขข้อความ" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ti.po b/po/ti.po index de9e00031..2b11cb6a9 100644 --- a/po/ti.po +++ b/po/ti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tk.po b/po/tk.po index de9e00031..2b11cb6a9 100644 --- a/po/tk.po +++ b/po/tk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tl.po b/po/tl.po index d0eac62a8..64666b461 100644 --- a/po/tl.po +++ b/po/tl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-08-22 19:20+0000\n" "Last-Translator: anjelo del carmen \n" "Language-Team: Tagalog \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/to.po b/po/to.po index de9e00031..2b11cb6a9 100644 --- a/po/to.po +++ b/po/to.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tr.po b/po/tr.po index f3254c348..9c1f5c6f1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-01-27 23:16+0000\n" "Last-Translator: Sinan Decron \n" "Language-Team: Turkish \n" @@ -314,39 +314,45 @@ msgstr "Düzenleyici" msgid "Highlight matching brackets" msgstr "Eşleşen parantezleri vurgula" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Sözdizimi Vurgulaması" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "Küçük harita" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "Satırları Kaydır" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "Satır genişliği kılavuzu" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Yazı Tipi" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "Sistem yazı tipini kullan" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Davranış" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Arayüz" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Eklentiler" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Kapat" @@ -865,8 +871,10 @@ msgid "Duplicate Tab" msgstr "Sekmeyi Kopyala" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Sözdizimi Vurgulaması" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Dilleri filtrele" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1045,27 +1053,27 @@ msgstr "%d / %d" msgid "no results" msgstr "sonuç yok" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Seçili Satırları Sırala" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Current Line" msgid "Mark Current Line" msgstr "Etkin satır" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "Metin Düzenleyici" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Yorum Aç/Kapat" diff --git a/po/ts.po b/po/ts.po index de9e00031..2b11cb6a9 100644 --- a/po/ts.po +++ b/po/ts.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tt.po b/po/tt.po index de9e00031..2b11cb6a9 100644 --- a/po/tt.po +++ b/po/tt.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/tw.po b/po/tw.po index de9e00031..2b11cb6a9 100644 --- a/po/tw.po +++ b/po/tw.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ty.po b/po/ty.po index de9e00031..2b11cb6a9 100644 --- a/po/ty.po +++ b/po/ty.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/ug.po b/po/ug.po index 6bc4b6800..9cf070bcf 100644 --- a/po/ug.po +++ b/po/ug.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-12-11 08:21+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: \n" @@ -330,43 +330,49 @@ msgstr "تەھرىرلىگۈچ" msgid "Highlight matching brackets" msgstr "ماس تېرناقلارنى ئالاھىدە كۆرسىتىش" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "گىرامماتىكىلىق كۆرسىتىش" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "ئومۇمىي ئەھۋالىنى كۆرسىتىش" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "قۇركەڭلىك تەۋسىيەسى" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "ھەركەت" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "كۆرۈنمە يۈز" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "قىستۇرمىلار" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "تاقاش" @@ -925,8 +931,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "گىرامماتىكىلىق كۆرسىتىش" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1116,27 +1122,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "ھازىرقى كۆرۈنۈشنى ئۆچۈرۈش" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "تېكىست تەھرىرلىگۈچ" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/uk.po b/po/uk.po index 711235c8c..e79603e4b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-08-01 07:55+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" "Language-Team: LANGUAGE \n" @@ -330,39 +330,45 @@ msgstr "مدون" msgid "Highlight matching brackets" msgstr "ملاپ بریکٹ نمایاں" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "نحو کو اجاگر" + +#: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "برتاؤ" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "انٹرفیس" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "ملانے" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "بند کریں" @@ -906,8 +912,8 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "نحو کو اجاگر" +msgid "Document language" +msgstr "" #: src/Widgets/FormatBar.vala:60 #, fuzzy @@ -1097,27 +1103,27 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "موجوده ويو دوركريں" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 #, fuzzy #| msgid "Text Editor" msgid "Goto Next Edit Mark" msgstr "ٹیکسٹ ایڈیٹر" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/uz.po b/po/uz.po index bbab2cf9e..6a424a828 100644 --- a/po/uz.po +++ b/po/uz.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-03-21 11:04+0000\n" "Last-Translator: Shukrullo Turgunov \n" "Language-Team: Uzbek \n" @@ -334,43 +334,49 @@ msgstr "Tahrirlovchi" msgid "Highlight matching brackets" msgstr "Mos keluvchi qavslarni belgilash:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "Sintaksisni ranglar bilan ajratish" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "Mini-xaritani ko'rsatish:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 #, fuzzy #| msgid "Line width guide:" msgid "Line width guide" msgstr "Qatorlar sozlamalari:" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "Shrift" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "Behavior" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "Interfeys" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "Qo'shimchalar" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "Yopish" @@ -928,8 +934,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "Sintaksisni ranglar bilan ajratish" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "Tillar filtri" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1116,23 +1124,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "Belgilangan qatorlarni tartiblash" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "Sharhga olish/Sharhdan chiqarish" diff --git a/po/ve.po b/po/ve.po index de9e00031..2b11cb6a9 100644 --- a/po/ve.po +++ b/po/ve.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/vi.po b/po/vi.po index 9204aa5e0..800889701 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-05-27 00:04+0000\n" "Last-Translator: Hugh Hoang \n" "Language-Team: Vietnamese \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/wo.po b/po/wo.po index de9e00031..2b11cb6a9 100644 --- a/po/wo.po +++ b/po/wo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/xh.po b/po/xh.po index de9e00031..2b11cb6a9 100644 --- a/po/xh.po +++ b/po/xh.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/yi.po b/po/yi.po index de9e00031..2b11cb6a9 100644 --- a/po/yi.po +++ b/po/yi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/yo.po b/po/yo.po index 49661305f..33c18b334 100644 --- a/po/yo.po +++ b/po/yo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/za.po b/po/za.po index 49661305f..33c18b334 100644 --- a/po/za.po +++ b/po/za.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/zh.po b/po/zh.po index 464b16e9d..c230809ec 100644 --- a/po/zh.po +++ b/po/zh.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2022-11-12 13:29+0000\n" "Last-Translator: XXTXTOP \n" "Language-Team: Chinese \n" @@ -330,41 +330,47 @@ msgstr "编辑器" msgid "Highlight matching brackets" msgstr "高亮匹配的括号:" -#: src/Dialogs/PreferencesDialog.vala:114 +#: src/Dialogs/PreferencesDialog.vala:113 +#, fuzzy +#| msgid "Syntax Highlighting" +msgid "Syntax highlighting" +msgstr "语法高亮" + +#: src/Dialogs/PreferencesDialog.vala:115 #, fuzzy #| msgid "Show Mini Map:" msgid "Mini Map" msgstr "显示缩略图:" -#: src/Dialogs/PreferencesDialog.vala:115 +#: src/Dialogs/PreferencesDialog.vala:116 msgid "Wrap lines" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:116 +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "字体" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "动作" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "扩展" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "关闭" @@ -904,8 +910,10 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" -msgstr "语法高亮" +#, fuzzy +#| msgid "Filter languages" +msgid "Document language" +msgstr "筛选语言" #: src/Widgets/FormatBar.vala:60 msgid "Line number" @@ -1092,25 +1100,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "对选定的行排序" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 #, fuzzy #| msgid "Remove Current View" msgid "Mark Current Line" msgstr "删除当前视图" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "切换注释" diff --git a/po/zh_CN.po b/po/zh_CN.po index 06cc9dc40..6b68b1e35 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-09-11 00:55+0000\n" "Last-Translator: JieXu \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 217451a17..d158a1afc 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-08-22 15:58+0000\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese (Traditional Han script) \n" "Language-Team: LANGUAGE \n" @@ -302,39 +302,43 @@ msgstr "" msgid "Highlight matching brackets" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:114 -msgid "Mini Map" +#: src/Dialogs/PreferencesDialog.vala:113 +msgid "Syntax highlighting" msgstr "" #: src/Dialogs/PreferencesDialog.vala:115 -msgid "Wrap lines" +msgid "Mini Map" msgstr "" #: src/Dialogs/PreferencesDialog.vala:116 +msgid "Wrap lines" +msgstr "" + +#: src/Dialogs/PreferencesDialog.vala:117 msgid "Line width guide" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:124 +#: src/Dialogs/PreferencesDialog.vala:125 msgid "Font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:125 +#: src/Dialogs/PreferencesDialog.vala:126 msgid "Use system font" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:136 +#: src/Dialogs/PreferencesDialog.vala:137 msgid "Behavior" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:137 src/SymbolPane/SymbolOutline.vala:51 +#: src/Dialogs/PreferencesDialog.vala:138 src/SymbolPane/SymbolOutline.vala:51 msgid "Interface" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:153 src/Services/PluginManager.vala:130 +#: src/Dialogs/PreferencesDialog.vala:154 src/Services/PluginManager.vala:130 msgid "Extensions" msgstr "" -#: src/Dialogs/PreferencesDialog.vala:159 +#: src/Dialogs/PreferencesDialog.vala:160 #: plugins/pastebin/pastebin_dialog.vala:434 msgid "Close" msgstr "" @@ -834,7 +838,7 @@ msgid "Duplicate Tab" msgstr "" #: src/Widgets/FormatBar.vala:50 -msgid "Syntax Highlighting" +msgid "Document language" msgstr "" #: src/Widgets/FormatBar.vala:60 @@ -1012,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:583 +#: src/Widgets/SourceView.vala:584 msgid "Sort Selected Lines" msgstr "" -#: src/Widgets/SourceView.vala:594 +#: src/Widgets/SourceView.vala:595 msgid "Mark Current Line" msgstr "" -#: src/Widgets/SourceView.vala:605 +#: src/Widgets/SourceView.vala:606 msgid "Goto Previous Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:616 +#: src/Widgets/SourceView.vala:617 msgid "Goto Next Edit Mark" msgstr "" -#: src/Widgets/SourceView.vala:635 +#: src/Widgets/SourceView.vala:636 msgid "Toggle Comment" msgstr "" From bc321bea984db799d31a786a7f1d05f86545313c Mon Sep 17 00:00:00 2001 From: Weblate Date: Mon, 10 Nov 2025 12:56:59 +0000 Subject: [PATCH 06/94] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Code/Plugins Translate-URL: https://l10n.elementaryos.org/projects/code/plugins/ --- po/plugins/aa.po | 2 +- po/plugins/ab.po | 2 +- po/plugins/ae.po | 2 +- po/plugins/af.po | 2 +- po/plugins/ak.po | 2 +- po/plugins/am.po | 2 +- po/plugins/an.po | 2 +- po/plugins/ar.po | 2 +- po/plugins/as.po | 2 +- po/plugins/ast.po | 2 +- po/plugins/av.po | 2 +- po/plugins/ay.po | 2 +- po/plugins/az.po | 2 +- po/plugins/ba.po | 2 +- po/plugins/be.po | 2 +- po/plugins/bg.po | 2 +- po/plugins/bh.po | 2 +- po/plugins/bi.po | 2 +- po/plugins/bm.po | 2 +- po/plugins/bn.po | 2 +- po/plugins/bo.po | 2 +- po/plugins/br.po | 2 +- po/plugins/bs.po | 2 +- po/plugins/ca.po | 2 +- po/plugins/ca@valencia.po | 2 +- po/plugins/ce.po | 2 +- po/plugins/ch.po | 2 +- po/plugins/ckb.po | 2 +- po/plugins/co.po | 2 +- po/plugins/cr.po | 2 +- po/plugins/cs.po | 2 +- po/plugins/cu.po | 2 +- po/plugins/cv.po | 2 +- po/plugins/cy.po | 2 +- po/plugins/da.po | 2 +- po/plugins/de.po | 2 +- po/plugins/dv.po | 2 +- po/plugins/dz.po | 2 +- po/plugins/ee.po | 2 +- po/plugins/el.po | 2 +- po/plugins/en_AU.po | 2 +- po/plugins/en_CA.po | 2 +- po/plugins/en_GB.po | 2 +- po/plugins/eo.po | 2 +- po/plugins/es.po | 2 +- po/plugins/et.po | 2 +- po/plugins/eu.po | 2 +- po/plugins/fa.po | 2 +- po/plugins/ff.po | 2 +- po/plugins/fi.po | 2 +- po/plugins/fj.po | 2 +- po/plugins/fo.po | 2 +- po/plugins/fr.po | 2 +- po/plugins/fr_CA.po | 2 +- po/plugins/fy.po | 2 +- po/plugins/ga.po | 2 +- po/plugins/gd.po | 2 +- po/plugins/gl.po | 2 +- po/plugins/gn.po | 2 +- po/plugins/gu.po | 2 +- po/plugins/gv.po | 2 +- po/plugins/ha.po | 2 +- po/plugins/he.po | 2 +- po/plugins/hi.po | 2 +- po/plugins/ho.po | 2 +- po/plugins/hr.po | 2 +- po/plugins/ht.po | 2 +- po/plugins/hu.po | 2 +- po/plugins/hy.po | 2 +- po/plugins/hz.po | 2 +- po/plugins/ia.po | 2 +- po/plugins/id.po | 2 +- po/plugins/ie.po | 2 +- po/plugins/ig.po | 2 +- po/plugins/ii.po | 2 +- po/plugins/ik.po | 2 +- po/plugins/io.po | 2 +- po/plugins/is.po | 2 +- po/plugins/it.po | 2 +- po/plugins/iu.po | 2 +- po/plugins/ja.po | 2 +- po/plugins/jv.po | 2 +- po/plugins/ka.po | 2 +- po/plugins/kg.po | 2 +- po/plugins/ki.po | 2 +- po/plugins/kj.po | 2 +- po/plugins/kk.po | 2 +- po/plugins/kl.po | 2 +- po/plugins/km.po | 2 +- po/plugins/kn.po | 2 +- po/plugins/ko.po | 2 +- po/plugins/kr.po | 2 +- po/plugins/ks.po | 2 +- po/plugins/ku.po | 2 +- po/plugins/kv.po | 2 +- po/plugins/kw.po | 2 +- po/plugins/ky.po | 2 +- po/plugins/la.po | 2 +- po/plugins/lb.po | 2 +- po/plugins/lg.po | 2 +- po/plugins/li.po | 2 +- po/plugins/ln.po | 2 +- po/plugins/lo.po | 2 +- po/plugins/lt.po | 2 +- po/plugins/lu.po | 2 +- po/plugins/lv.po | 2 +- po/plugins/mg.po | 2 +- po/plugins/mh.po | 2 +- po/plugins/mi.po | 2 +- po/plugins/mk.po | 2 +- po/plugins/ml.po | 2 +- po/plugins/mn.po | 2 +- po/plugins/mr.po | 2 +- po/plugins/ms.po | 2 +- po/plugins/mt.po | 2 +- po/plugins/my.po | 2 +- po/plugins/na.po | 2 +- po/plugins/nb.po | 2 +- po/plugins/nd.po | 2 +- po/plugins/ne.po | 2 +- po/plugins/ng.po | 2 +- po/plugins/nl.po | 2 +- po/plugins/nn.po | 2 +- po/plugins/no.po | 2 +- po/plugins/nr.po | 2 +- po/plugins/nv.po | 2 +- po/plugins/ny.po | 2 +- po/plugins/oc.po | 2 +- po/plugins/oj.po | 2 +- po/plugins/om.po | 2 +- po/plugins/or.po | 2 +- po/plugins/os.po | 2 +- po/plugins/pa.po | 2 +- po/plugins/pi.po | 2 +- po/plugins/pl.po | 2 +- po/plugins/ps.po | 2 +- po/plugins/pt.po | 2 +- po/plugins/pt_BR.po | 2 +- po/plugins/qu.po | 2 +- po/plugins/rm.po | 2 +- po/plugins/rn.po | 2 +- po/plugins/ro.po | 2 +- po/plugins/ro_MD.po | 2 +- po/plugins/ru.po | 2 +- po/plugins/rue.po | 2 +- po/plugins/rw.po | 2 +- po/plugins/sa.po | 2 +- po/plugins/sc.po | 2 +- po/plugins/sd.po | 2 +- po/plugins/se.po | 2 +- po/plugins/sg.po | 2 +- po/plugins/si.po | 2 +- po/plugins/sk.po | 2 +- po/plugins/sl.po | 2 +- po/plugins/sm.po | 2 +- po/plugins/sma.po | 2 +- po/plugins/sn.po | 2 +- po/plugins/so.po | 2 +- po/plugins/sq.po | 2 +- po/plugins/sr.po | 2 +- po/plugins/ss.po | 2 +- po/plugins/st.po | 2 +- po/plugins/su.po | 2 +- po/plugins/sv.po | 2 +- po/plugins/sw.po | 2 +- po/plugins/szl.po | 2 +- po/plugins/ta.po | 2 +- po/plugins/te.po | 2 +- po/plugins/tg.po | 2 +- po/plugins/th.po | 2 +- po/plugins/ti.po | 2 +- po/plugins/tk.po | 2 +- po/plugins/tl.po | 2 +- po/plugins/tn.po | 2 +- po/plugins/to.po | 2 +- po/plugins/tr.po | 2 +- po/plugins/ts.po | 2 +- po/plugins/tt.po | 2 +- po/plugins/tw.po | 2 +- po/plugins/ty.po | 2 +- po/plugins/ug.po | 2 +- po/plugins/uk.po | 2 +- po/plugins/ur.po | 2 +- po/plugins/uz.po | 2 +- po/plugins/ve.po | 2 +- po/plugins/vi.po | 2 +- po/plugins/vo.po | 2 +- po/plugins/wa.po | 2 +- po/plugins/wo.po | 2 +- po/plugins/xh.po | 2 +- po/plugins/yi.po | 2 +- po/plugins/yo.po | 2 +- po/plugins/za.po | 2 +- po/plugins/zh.po | 2 +- po/plugins/zh_CN.po | 2 +- po/plugins/zh_HANS.po | 2 +- po/plugins/zh_HANT.po | 2 +- po/plugins/zh_HK.po | 2 +- po/plugins/zh_TW.po | 2 +- po/plugins/zu.po | 2 +- 200 files changed, 200 insertions(+), 200 deletions(-) diff --git a/po/plugins/aa.po b/po/plugins/aa.po index 295d9fd72..2038500c3 100644 --- a/po/plugins/aa.po +++ b/po/plugins/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ab.po b/po/plugins/ab.po index 66beb3116..f16f063e5 100644 --- a/po/plugins/ab.po +++ b/po/plugins/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ae.po b/po/plugins/ae.po index d16e11418..3e58ce8df 100644 --- a/po/plugins/ae.po +++ b/po/plugins/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/af.po b/po/plugins/af.po index 12f0032a1..f84792577 100644 --- a/po/plugins/af.po +++ b/po/plugins/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ak.po b/po/plugins/ak.po index 083efde44..f0e4d71f5 100644 --- a/po/plugins/ak.po +++ b/po/plugins/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/am.po b/po/plugins/am.po index 35533d5a8..ef5267bdb 100644 --- a/po/plugins/am.po +++ b/po/plugins/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/an.po b/po/plugins/an.po index ff8bcd6b6..cf1c2e26f 100644 --- a/po/plugins/an.po +++ b/po/plugins/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ar.po b/po/plugins/ar.po index af56689e9..654b8e551 100644 --- a/po/plugins/ar.po +++ b/po/plugins/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-05-14 14:11+0000\n" "Last-Translator: nasserbinlaboun \n" "Language-Team: Arabic \n" "Language-Team: Belarusian \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish (Central) \n" "Language-Team: Czech \n" diff --git a/po/plugins/cu.po b/po/plugins/cu.po index b2198c976..0594ab128 100644 --- a/po/plugins/cu.po +++ b/po/plugins/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/cv.po b/po/plugins/cv.po index ac2681623..c9153b8b9 100644 --- a/po/plugins/cv.po +++ b/po/plugins/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/cy.po b/po/plugins/cy.po index 3776fd30b..08396aa23 100644 --- a/po/plugins/cy.po +++ b/po/plugins/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/da.po b/po/plugins/da.po index 2fc4a0a95..0282a71dd 100644 --- a/po/plugins/da.po +++ b/po/plugins/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-05-27 12:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" diff --git a/po/plugins/ho.po b/po/plugins/ho.po index fc9992b2b..213d09808 100644 --- a/po/plugins/ho.po +++ b/po/plugins/ho.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/hr.po b/po/plugins/hr.po index 96faa3e42..6b66e0ae6 100644 --- a/po/plugins/hr.po +++ b/po/plugins/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-01-28 15:41+0000\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ht.po b/po/plugins/ht.po index 76f802795..412e076d2 100644 --- a/po/plugins/ht.po +++ b/po/plugins/ht.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/hu.po b/po/plugins/hu.po index 548fe4c54..01869b4b7 100644 --- a/po/plugins/hu.po +++ b/po/plugins/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2024-08-06 06:16+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" diff --git a/po/plugins/ie.po b/po/plugins/ie.po index 51329c49f..24ba81a89 100644 --- a/po/plugins/ie.po +++ b/po/plugins/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ig.po b/po/plugins/ig.po index 410ceabec..2bf6c144e 100644 --- a/po/plugins/ig.po +++ b/po/plugins/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ii.po b/po/plugins/ii.po index c4d15789c..c628430e2 100644 --- a/po/plugins/ii.po +++ b/po/plugins/ii.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/ik.po b/po/plugins/ik.po index 257363dab..0d7f7f445 100644 --- a/po/plugins/ik.po +++ b/po/plugins/ik.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/io.po b/po/plugins/io.po index eec70a6a1..4adc70ca1 100644 --- a/po/plugins/io.po +++ b/po/plugins/io.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/is.po b/po/plugins/is.po index 7655e95b3..29f4ee9aa 100644 --- a/po/plugins/is.po +++ b/po/plugins/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/it.po b/po/plugins/it.po index 457481d8f..839869263 100644 --- a/po/plugins/it.po +++ b/po/plugins/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-10-23 17:15+0000\n" "Last-Translator: Fabio Zaramella \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" "Language-Team: Lithuanian \n" "Language-Team: Marathi \n" "Language-Team: Malay \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" diff --git a/po/plugins/nn.po b/po/plugins/nn.po index 7f9a58f9f..74cd3c0a6 100644 --- a/po/plugins/nn.po +++ b/po/plugins/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-07-17 12:12+0000\n" "Last-Translator: Martin Myrvold \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Occitan \n" "Language-Team: Punjabi \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Silesian \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian \n" "Language-Team: Uzbek \n" diff --git a/po/plugins/ve.po b/po/plugins/ve.po index 312afe2dd..f3264afe1 100644 --- a/po/plugins/ve.po +++ b/po/plugins/ve.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/vi.po b/po/plugins/vi.po index be71c8b0a..786ea4411 100644 --- a/po/plugins/vi.po +++ b/po/plugins/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/vo.po b/po/plugins/vo.po index de4e96752..63c94d036 100644 --- a/po/plugins/vo.po +++ b/po/plugins/vo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/wa.po b/po/plugins/wa.po index d9a6a451a..55e12d3b2 100644 --- a/po/plugins/wa.po +++ b/po/plugins/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/wo.po b/po/plugins/wo.po index c480fe1e6..10de08b8c 100644 --- a/po/plugins/wo.po +++ b/po/plugins/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/xh.po b/po/plugins/xh.po index 99e9e0c59..6bdb1e1a8 100644 --- a/po/plugins/xh.po +++ b/po/plugins/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/yi.po b/po/plugins/yi.po index 68e4d639d..7a73e1243 100644 --- a/po/plugins/yi.po +++ b/po/plugins/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/yo.po b/po/plugins/yo.po index c9a1d9986..54c775917 100644 --- a/po/plugins/yo.po +++ b/po/plugins/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/za.po b/po/plugins/za.po index 00d6cd054..9dd11d013 100644 --- a/po/plugins/za.po +++ b/po/plugins/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:27-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/plugins/zh.po b/po/plugins/zh.po index 14d0a17a8..059b47167 100644 --- a/po/plugins/zh.po +++ b/po/plugins/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Chinese \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Traditional) Date: Mon, 10 Nov 2025 12:57:06 +0000 Subject: [PATCH 07/94] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Code/Extra Translate-URL: https://l10n.elementaryos.org/projects/code/extra/ --- po/extra/aa.po | 2 +- po/extra/ab.po | 2 +- po/extra/ae.po | 2 +- po/extra/af.po | 2 +- po/extra/ak.po | 2 +- po/extra/am.po | 2 +- po/extra/an.po | 2 +- po/extra/ar.po | 2 +- po/extra/as.po | 2 +- po/extra/ast.po | 2 +- po/extra/av.po | 2 +- po/extra/ay.po | 2 +- po/extra/az.po | 2 +- po/extra/ba.po | 2 +- po/extra/be.po | 2 +- po/extra/bg.po | 2 +- po/extra/bh.po | 2 +- po/extra/bi.po | 2 +- po/extra/bm.po | 2 +- po/extra/bn.po | 2 +- po/extra/bo.po | 2 +- po/extra/br.po | 2 +- po/extra/bs.po | 2 +- po/extra/ca.po | 2 +- po/extra/ca@valencia.po | 2 +- po/extra/ce.po | 2 +- po/extra/ch.po | 2 +- po/extra/ckb.po | 2 +- po/extra/co.po | 2 +- po/extra/cr.po | 2 +- po/extra/cs.po | 2 +- po/extra/cu.po | 2 +- po/extra/cv.po | 2 +- po/extra/cy.po | 2 +- po/extra/da.po | 2 +- po/extra/de.po | 2 +- po/extra/dv.po | 2 +- po/extra/dz.po | 2 +- po/extra/ee.po | 2 +- po/extra/el.po | 2 +- po/extra/en_AU.po | 2 +- po/extra/en_CA.po | 2 +- po/extra/en_GB.po | 2 +- po/extra/eo.po | 2 +- po/extra/es.po | 2 +- po/extra/et.po | 2 +- po/extra/eu.po | 2 +- po/extra/fa.po | 2 +- po/extra/ff.po | 2 +- po/extra/fi.po | 2 +- po/extra/fj.po | 2 +- po/extra/fo.po | 2 +- po/extra/fr.po | 6 +++--- po/extra/fr_CA.po | 2 +- po/extra/fy.po | 2 +- po/extra/ga.po | 2 +- po/extra/gd.po | 2 +- po/extra/gl.po | 2 +- po/extra/gn.po | 2 +- po/extra/gu.po | 2 +- po/extra/gv.po | 2 +- po/extra/ha.po | 2 +- po/extra/he.po | 2 +- po/extra/hi.po | 2 +- po/extra/ho.po | 2 +- po/extra/hr.po | 2 +- po/extra/ht.po | 2 +- po/extra/hu.po | 2 +- po/extra/hy.po | 2 +- po/extra/hz.po | 2 +- po/extra/ia.po | 2 +- po/extra/id.po | 2 +- po/extra/ie.po | 2 +- po/extra/ig.po | 2 +- po/extra/ii.po | 2 +- po/extra/ik.po | 2 +- po/extra/io.po | 2 +- po/extra/is.po | 2 +- po/extra/it.po | 2 +- po/extra/iu.po | 2 +- po/extra/ja.po | 10 ++++++---- po/extra/jv.po | 2 +- po/extra/ka.po | 2 +- po/extra/kg.po | 2 +- po/extra/ki.po | 2 +- po/extra/kj.po | 2 +- po/extra/kk.po | 2 +- po/extra/kl.po | 2 +- po/extra/km.po | 2 +- po/extra/kn.po | 2 +- po/extra/ko.po | 2 +- po/extra/kr.po | 2 +- po/extra/ks.po | 2 +- po/extra/ku.po | 2 +- po/extra/kv.po | 2 +- po/extra/kw.po | 2 +- po/extra/ky.po | 2 +- po/extra/la.po | 2 +- po/extra/lb.po | 2 +- po/extra/lg.po | 2 +- po/extra/li.po | 2 +- po/extra/ln.po | 2 +- po/extra/lo.po | 2 +- po/extra/lt.po | 2 +- po/extra/lu.po | 2 +- po/extra/lv.po | 2 +- po/extra/mg.po | 2 +- po/extra/mh.po | 2 +- po/extra/mi.po | 2 +- po/extra/mk.po | 2 +- po/extra/ml.po | 2 +- po/extra/mn.po | 2 +- po/extra/mr.po | 2 +- po/extra/ms.po | 2 +- po/extra/mt.po | 2 +- po/extra/my.po | 2 +- po/extra/na.po | 2 +- po/extra/nb.po | 2 +- po/extra/nd.po | 2 +- po/extra/ne.po | 2 +- po/extra/ng.po | 2 +- po/extra/nl.po | 2 +- po/extra/nn.po | 2 +- po/extra/no.po | 2 +- po/extra/nr.po | 2 +- po/extra/nv.po | 2 +- po/extra/ny.po | 2 +- po/extra/oc.po | 2 +- po/extra/oj.po | 2 +- po/extra/om.po | 2 +- po/extra/or.po | 2 +- po/extra/os.po | 2 +- po/extra/pa.po | 2 +- po/extra/pi.po | 2 +- po/extra/pl.po | 2 +- po/extra/ps.po | 2 +- po/extra/pt.po | 2 +- po/extra/pt_BR.po | 2 +- po/extra/qu.po | 2 +- po/extra/rm.po | 2 +- po/extra/rn.po | 2 +- po/extra/ro.po | 2 +- po/extra/ro_MD.po | 2 +- po/extra/ru.po | 5 +++-- po/extra/rue.po | 2 +- po/extra/rw.po | 2 +- po/extra/sa.po | 2 +- po/extra/sc.po | 2 +- po/extra/sd.po | 2 +- po/extra/se.po | 2 +- po/extra/sg.po | 2 +- po/extra/si.po | 2 +- po/extra/sk.po | 2 +- po/extra/sl.po | 2 +- po/extra/sm.po | 2 +- po/extra/sma.po | 2 +- po/extra/sn.po | 2 +- po/extra/so.po | 2 +- po/extra/sq.po | 2 +- po/extra/sr.po | 2 +- po/extra/ss.po | 2 +- po/extra/st.po | 2 +- po/extra/su.po | 2 +- po/extra/sv.po | 2 +- po/extra/sw.po | 2 +- po/extra/szl.po | 2 +- po/extra/ta.po | 2 +- po/extra/te.po | 2 +- po/extra/tg.po | 2 +- po/extra/th.po | 2 +- po/extra/ti.po | 2 +- po/extra/tk.po | 2 +- po/extra/tl.po | 2 +- po/extra/tn.po | 2 +- po/extra/to.po | 2 +- po/extra/tr.po | 2 +- po/extra/ts.po | 2 +- po/extra/tt.po | 2 +- po/extra/tw.po | 2 +- po/extra/ty.po | 2 +- po/extra/ug.po | 2 +- po/extra/uk.po | 2 +- po/extra/ur.po | 2 +- po/extra/uz.po | 2 +- po/extra/ve.po | 2 +- po/extra/vi.po | 2 +- po/extra/vo.po | 2 +- po/extra/wa.po | 2 +- po/extra/wo.po | 2 +- po/extra/xh.po | 2 +- po/extra/yi.po | 2 +- po/extra/yo.po | 2 +- po/extra/za.po | 2 +- po/extra/zh.po | 2 +- po/extra/zh_CN.po | 2 +- po/extra/zh_HANS.po | 2 +- po/extra/zh_HANT.po | 2 +- po/extra/zh_HK.po | 2 +- po/extra/zh_TW.po | 2 +- po/extra/zu.po | 2 +- 200 files changed, 209 insertions(+), 206 deletions(-) diff --git a/po/extra/aa.po b/po/extra/aa.po index f07de5846..b616df3cc 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ab.po b/po/extra/ab.po index 7b2ab9819..6b91eff9e 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ae.po b/po/extra/ae.po index 0e2074fec..0c649e34b 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/af.po b/po/extra/af.po index 99a15bf41..0aeaf1986 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ak.po b/po/extra/ak.po index 6b4fe2f4b..0507788a3 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/am.po b/po/extra/am.po index 27fd61331..33fdc16c3 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/an.po b/po/extra/an.po index 109d02ab2..064360bd0 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ar.po b/po/extra/ar.po index 51c7e4318..2fb6c1724 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-09-06 18:12+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" diff --git a/po/extra/as.po b/po/extra/as.po index e61f3fb31..f53139942 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ast.po b/po/extra/ast.po index f94f62e45..814676a49 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/av.po b/po/extra/av.po index 457252bd3..80edc423b 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ay.po b/po/extra/ay.po index 5f8d6d00e..07575035c 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/az.po b/po/extra/az.po index 2956f5074..c717bf28b 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ba.po b/po/extra/ba.po index c8f993ec6..182e3ae98 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/be.po b/po/extra/be.po index 231f727ca..9719da6d0 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: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-07-28 13:55+0000\n" "Last-Translator: lenify \n" "Language-Team: Belarusian \n" "Language-Team: Bulgarian \n" "Language-Team: Tibetan \n" diff --git a/po/extra/br.po b/po/extra/br.po index c188d3e77..34f1a61e6 100644 --- a/po/extra/br.po +++ b/po/extra/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/bs.po b/po/extra/bs.po index 988722cc1..85b056945 100644 --- a/po/extra/bs.po +++ b/po/extra/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-11-04 10:58+0000\n" "Last-Translator: Elvis Mujanović \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish (Central) \n" "Language-Team: Czech \n" diff --git a/po/extra/cu.po b/po/extra/cu.po index 1bd2a03a9..c3f80d532 100644 --- a/po/extra/cu.po +++ b/po/extra/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cv.po b/po/extra/cv.po index 5619f939e..f375e0079 100644 --- a/po/extra/cv.po +++ b/po/extra/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/cy.po b/po/extra/cy.po index a84d47e5f..812ac5609 100644 --- a/po/extra/cy.po +++ b/po/extra/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/da.po b/po/extra/da.po index 444ab578b..0f35332cf 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-05-27 12:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" diff --git a/po/extra/de.po b/po/extra/de.po index 8af2137e6..306cb86db 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2022-07-06 19:12+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" diff --git a/po/extra/dv.po b/po/extra/dv.po index 685b309a0..526fd5b84 100644 --- a/po/extra/dv.po +++ b/po/extra/dv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/dz.po b/po/extra/dz.po index 30eb0b430..995f1d52b 100644 --- a/po/extra/dz.po +++ b/po/extra/dz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ee.po b/po/extra/ee.po index 4970bec4f..44cd80bd9 100644 --- a/po/extra/ee.po +++ b/po/extra/ee.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/el.po b/po/extra/el.po index a8763ec97..0786b4c4b 100644 --- a/po/extra/el.po +++ b/po/extra/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Greek \n" diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po index 0b7390c6f..f84d43d99 100644 --- a/po/extra/en_AU.po +++ b/po/extra/en_AU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: English (Australia) \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" diff --git a/po/extra/eu.po b/po/extra/eu.po index 5ffc642c2..fe34d672b 100644 --- a/po/extra/eu.po +++ b/po/extra/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-09-11 21:37+0000\n" "Last-Translator: Félix Brezo \n" "Language-Team: Basque \n" diff --git a/po/extra/fa.po b/po/extra/fa.po index 9dd7c21b6..6760f0039 100644 --- a/po/extra/fa.po +++ b/po/extra/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Persian \n" diff --git a/po/extra/ff.po b/po/extra/ff.po index be1e3de15..64cc104a3 100644 --- a/po/extra/ff.po +++ b/po/extra/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fi.po b/po/extra/fi.po index 054425e2f..cd795becc 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2024-12-01 18:10+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" diff --git a/po/extra/fj.po b/po/extra/fj.po index 0f904ae01..2090cdcec 100644 --- a/po/extra/fj.po +++ b/po/extra/fj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fo.po b/po/extra/fo.po index 78b2def44..59b7decc9 100644 --- a/po/extra/fo.po +++ b/po/extra/fo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/fr.po b/po/extra/fr.po index f23cac261..7704eadfc 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-30 19:55+0000\n" "Last-Translator: Nathan \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po index 355a4ee18..61e5c8ea2 100644 --- a/po/extra/fr_CA.po +++ b/po/extra/fr_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: French (Canada) \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" diff --git a/po/extra/ie.po b/po/extra/ie.po index 9524d6e5e..5bdb18ece 100644 --- a/po/extra/ie.po +++ b/po/extra/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ig.po b/po/extra/ig.po index ab32a44d6..b054c16f3 100644 --- a/po/extra/ig.po +++ b/po/extra/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ii.po b/po/extra/ii.po index f234bee9c..ce9f86515 100644 --- a/po/extra/ii.po +++ b/po/extra/ii.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ik.po b/po/extra/ik.po index fe2911da1..f953a9b55 100644 --- a/po/extra/ik.po +++ b/po/extra/ik.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/io.po b/po/extra/io.po index aac669555..130bafd52 100644 --- a/po/extra/io.po +++ b/po/extra/io.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/is.po b/po/extra/is.po index 69ca85685..1775a13e8 100644 --- a/po/extra/is.po +++ b/po/extra/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/it.po b/po/extra/it.po index 1f975ff82..b1dffca46 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-10-23 17:15+0000\n" "Last-Translator: Fabio Zaramella \n" "Language-Team: Italian \n" diff --git a/po/extra/iu.po b/po/extra/iu.po index 5487f29b0..747711082 100644 --- a/po/extra/iu.po +++ b/po/extra/iu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ja.po b/po/extra/ja.po index 72ce98be9..94475b11b 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-11-02 07:55+0000\n" "Last-Translator: Ryo Nakano \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" diff --git a/po/extra/kr.po b/po/extra/kr.po index cf50c1577..319318dca 100644 --- a/po/extra/kr.po +++ b/po/extra/kr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ks.po b/po/extra/ks.po index ec7a88730..71d92995c 100644 --- a/po/extra/ks.po +++ b/po/extra/ks.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ku.po b/po/extra/ku.po index 66f15873f..7e0d3e13c 100644 --- a/po/extra/ku.po +++ b/po/extra/ku.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-06-01 00:06+0000\n" "Last-Translator: Rokar \n" "Language-Team: Kurdish \n" "Language-Team: Kirghiz \n" diff --git a/po/extra/la.po b/po/extra/la.po index 81fcf8b7a..9b84723a9 100644 --- a/po/extra/la.po +++ b/po/extra/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lb.po b/po/extra/lb.po index 133d986f4..8dd2ac418 100644 --- a/po/extra/lb.po +++ b/po/extra/lb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lg.po b/po/extra/lg.po index 48473ff8d..1b525ddc7 100644 --- a/po/extra/lg.po +++ b/po/extra/lg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/li.po b/po/extra/li.po index 403a7faf2..2e99dda36 100644 --- a/po/extra/li.po +++ b/po/extra/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ln.po b/po/extra/ln.po index f9a9b817d..11d770a90 100644 --- a/po/extra/ln.po +++ b/po/extra/ln.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lo.po b/po/extra/lo.po index 71a0752be..1cfbd0539 100644 --- a/po/extra/lo.po +++ b/po/extra/lo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/lt.po b/po/extra/lt.po index a8e14be27..70902beb6 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-08-29 15:22+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" diff --git a/po/extra/mg.po b/po/extra/mg.po index 40dc11764..e21091316 100644 --- a/po/extra/mg.po +++ b/po/extra/mg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/mh.po b/po/extra/mh.po index 12a006a4c..67b40b79e 100644 --- a/po/extra/mh.po +++ b/po/extra/mh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/mi.po b/po/extra/mi.po index 27f2209f5..4e02241ea 100644 --- a/po/extra/mi.po +++ b/po/extra/mi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/mk.po b/po/extra/mk.po index cb8d1bc45..a77a15202 100644 --- a/po/extra/mk.po +++ b/po/extra/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ml.po b/po/extra/ml.po index 87f5d0ece..a2105f669 100644 --- a/po/extra/ml.po +++ b/po/extra/ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/mn.po b/po/extra/mn.po index 0d5173718..3b06cf115 100644 --- a/po/extra/mn.po +++ b/po/extra/mn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/mr.po b/po/extra/mr.po index baa11de9f..95c39236f 100644 --- a/po/extra/mr.po +++ b/po/extra/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-03-21 00:15+0000\n" "Last-Translator: Prachi Joshi \n" "Language-Team: Marathi \n" diff --git a/po/extra/ms.po b/po/extra/ms.po index 16931130b..edf2184d1 100644 --- a/po/extra/ms.po +++ b/po/extra/ms.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-06-13 00:02+0000\n" "Last-Translator: Timothy \n" "Language-Team: Malay \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" diff --git a/po/extra/nn.po b/po/extra/nn.po index 2f2307e01..1bc89f341 100644 --- a/po/extra/nn.po +++ b/po/extra/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-01-04 20:56+0000\n" "Last-Translator: Simon Dagfinrud \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Occitan \n" diff --git a/po/extra/oj.po b/po/extra/oj.po index 4c6f90dd5..46da737ca 100644 --- a/po/extra/oj.po +++ b/po/extra/oj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/om.po b/po/extra/om.po index 4d943fad6..9380a66c8 100644 --- a/po/extra/om.po +++ b/po/extra/om.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/or.po b/po/extra/or.po index 215436454..d9c49620c 100644 --- a/po/extra/or.po +++ b/po/extra/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/os.po b/po/extra/os.po index a1668dadf..77ce53998 100644 --- a/po/extra/os.po +++ b/po/extra/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pa.po b/po/extra/pa.po index 99d44d4df..0d36768f5 100644 --- a/po/extra/pa.po +++ b/po/extra/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-07-27 11:47+0000\n" "Last-Translator: elSolus \n" "Language-Team: Punjabi \n" diff --git a/po/extra/pi.po b/po/extra/pi.po index 2368b9a1b..d0166b31e 100644 --- a/po/extra/pi.po +++ b/po/extra/pi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/pl.po b/po/extra/pl.po index 9735c8fa2..6154136a6 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-07-07 18:55+0000\n" "Last-Translator: Marcin Serwin \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian \n" "Language-Team: Russian \n" "Language-Team: Sinhala \n" diff --git a/po/extra/sk.po b/po/extra/sk.po index d79becbbd..452107d7e 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2022-09-30 22:14+0000\n" "Last-Translator: JohnDumpling \n" "Language-Team: Slovak \n" diff --git a/po/extra/sl.po b/po/extra/sl.po index d0ab648fd..60b4fb841 100644 --- a/po/extra/sl.po +++ b/po/extra/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2020-03-02 23:09+0000\n" "Last-Translator: Marko \n" "Language-Team: Slovenian \n" "Language-Team: Albanian \n" diff --git a/po/extra/sr.po b/po/extra/sr.po index 96ef8785d..8da59c21b 100644 --- a/po/extra/sr.po +++ b/po/extra/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2021-03-11 12:54+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" diff --git a/po/extra/ss.po b/po/extra/ss.po index 947cba92d..a36b4db6b 100644 --- a/po/extra/ss.po +++ b/po/extra/ss.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/st.po b/po/extra/st.po index 3830eb039..bbe483013 100644 --- a/po/extra/st.po +++ b/po/extra/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/su.po b/po/extra/su.po index 1ba4b6960..355ad3eea 100644 --- a/po/extra/su.po +++ b/po/extra/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/sv.po b/po/extra/sv.po index 7915f9e65..6f4b9e063 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-10-30 19:55+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "Language-Team: Silesian \n" "Language-Team: Thai \n" diff --git a/po/extra/ti.po b/po/extra/ti.po index f1905007c..fd72522bf 100644 --- a/po/extra/ti.po +++ b/po/extra/ti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tk.po b/po/extra/tk.po index 33e38c700..0aa065b81 100644 --- a/po/extra/tk.po +++ b/po/extra/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tl.po b/po/extra/tl.po index c7c9c6075..fb63156d6 100644 --- a/po/extra/tl.po +++ b/po/extra/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2017-08-22 19:15+0000\n" "Last-Translator: anjelo del carmen \n" "Language-Team: Tagalog \n" "Language-Team: Turkish \n" diff --git a/po/extra/ts.po b/po/extra/ts.po index 0a938ce21..aee46b537 100644 --- a/po/extra/ts.po +++ b/po/extra/ts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tt.po b/po/extra/tt.po index 4aa26a3bd..52ce232c5 100644 --- a/po/extra/tt.po +++ b/po/extra/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/tw.po b/po/extra/tw.po index 742387104..5faead0ec 100644 --- a/po/extra/tw.po +++ b/po/extra/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ty.po b/po/extra/ty.po index 864d7eec0..979ff54c6 100644 --- a/po/extra/ty.po +++ b/po/extra/ty.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/ug.po b/po/extra/ug.po index c64e94d64..d1eccef05 100644 --- a/po/extra/ug.po +++ b/po/extra/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2016-12-07 08:58+0000\n" "Last-Translator: ablimet \n" "Language-Team: Uyghur \n" diff --git a/po/extra/uk.po b/po/extra/uk.po index f253ecf71..4cd44482b 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2025-08-01 07:55+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" "Language-Team: Uzbek \n" diff --git a/po/extra/ve.po b/po/extra/ve.po index c2eee84a0..e87a238df 100644 --- a/po/extra/ve.po +++ b/po/extra/ve.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/vi.po b/po/extra/vi.po index b8629d9c9..118b5b358 100644 --- a/po/extra/vi.po +++ b/po/extra/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/vo.po b/po/extra/vo.po index bed6a46d1..6e9dc3f5b 100644 --- a/po/extra/vo.po +++ b/po/extra/vo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/wa.po b/po/extra/wa.po index ac6d3855d..6e0d034f6 100644 --- a/po/extra/wa.po +++ b/po/extra/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/wo.po b/po/extra/wo.po index 914a19acc..23d119efa 100644 --- a/po/extra/wo.po +++ b/po/extra/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/xh.po b/po/extra/xh.po index 87c8a0317..18a57430a 100644 --- a/po/extra/xh.po +++ b/po/extra/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/yi.po b/po/extra/yi.po index f1b8c5787..3e3bf6bf7 100644 --- a/po/extra/yi.po +++ b/po/extra/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/yo.po b/po/extra/yo.po index 988aa66d7..a51862a13 100644 --- a/po/extra/yo.po +++ b/po/extra/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/za.po b/po/extra/za.po index cd4a60414..8313f6add 100644 --- a/po/extra/za.po +++ b/po/extra/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2018-10-18 14:13-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/po/extra/zh.po b/po/extra/zh.po index 734c00c82..cb577711e 100644 --- a/po/extra/zh.po +++ b/po/extra/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2019-09-10 14:55+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Chinese \n" diff --git a/po/extra/zh_CN.po b/po/extra/zh_CN.po index cd2a24a9c..022287148 100644 --- a/po/extra/zh_CN.po +++ b/po/extra/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-29 18:21+0000\n" +"POT-Creation-Date: 2025-11-10 12:52+0000\n" "PO-Revision-Date: 2022-01-28 13:22+0000\n" "Last-Translator: colindemian \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Traditional Han script) Date: Tue, 11 Nov 2025 08:50:42 +0000 Subject: [PATCH 08/94] Translated using Weblate (Catalan) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/ca/ --- po/ca.po | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/po/ca.po b/po/ca.po index a2c60a6dd..43ca365dc 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-18 07:55+0000\n" +"PO-Revision-Date: 2025-11-11 13:55+0000\n" "Last-Translator: David M \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan " +"\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -316,10 +316,8 @@ msgid "Highlight matching brackets" msgstr "Realça la parella de claudàtors" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" -msgstr "Realçat de sintaxi" +msgstr "Ressaltament de la sintaxi" #: src/Dialogs/PreferencesDialog.vala:115 msgid "Mini Map" @@ -870,10 +868,8 @@ msgid "Duplicate Tab" msgstr "Duplica la pestanya" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "Filtra llenguatges" +msgstr "Llengua del document" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From 0c796996cc73fa36639a4703191699e746bcf19d Mon Sep 17 00:00:00 2001 From: TomiOhl Date: Mon, 10 Nov 2025 13:24:25 +0000 Subject: [PATCH 09/94] Translated using Weblate (Hungarian) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/hu/ --- po/hu.po | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/po/hu.po b/po/hu.po index 4176e0198..e2e0ac2b8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-18 07:55+0000\n" +"PO-Revision-Date: 2025-11-11 13:55+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" @@ -315,8 +315,6 @@ msgid "Highlight matching brackets" msgstr "Zárójelpárok kiemelése" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "Szintaxiskiemelés" @@ -868,10 +866,8 @@ msgid "Duplicate Tab" msgstr "Lap megkettőzése" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "Nyelvek szűrése" +msgstr "A dokumentum nyelve" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From e7e2c6f75cb8856423bbb3e6b34fe57e62c87ba8 Mon Sep 17 00:00:00 2001 From: Daniel Nylander Date: Mon, 10 Nov 2025 20:26:42 +0000 Subject: [PATCH 10/94] Translated using Weblate (Swedish) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/sv/ --- po/sv.po | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/sv.po b/po/sv.po index 35162baa3..cf2dcfb2a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-29 18:21+0000\n" +"PO-Revision-Date: 2025-11-11 13:55+0000\n" "Last-Translator: Daniel Nylander \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish " +"\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -314,8 +314,6 @@ msgid "Highlight matching brackets" msgstr "Markera matchande parenteser" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "Syntaxmarkering" @@ -868,10 +866,8 @@ msgid "Duplicate Tab" msgstr "Duplicera flik" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "Filtrera språk" +msgstr "Dokumentspråk" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From 6aa37bade81c069806a0c6cb3424240c6775dd02 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Wed, 12 Nov 2025 13:56:33 +0000 Subject: [PATCH 11/94] Translated using Weblate (Japanese) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/ja/ --- po/ja.po | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/po/ja.po b/po/ja.po index 603dd99d4..596628b4b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-25 00:24+0000\n" +"PO-Revision-Date: 2025-11-13 07:55+0000\n" "Last-Translator: Ryo Nakano \n" "Language-Team: Japanese \n" @@ -312,8 +312,6 @@ msgid "Highlight matching brackets" msgstr "対となるカッコをハイライト" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "シンタックスハイライト" @@ -857,10 +855,8 @@ msgid "Duplicate Tab" msgstr "タブを複製" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "言語をフィルター" +msgstr "言語" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From d7297d79266ffb2126fc390384515c8d7d43a721 Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 12 Nov 2025 09:18:00 +0000 Subject: [PATCH 12/94] Translated using Weblate (French) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/fr/ --- po/fr.po | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/fr.po b/po/fr.po index 2e914bcae..2f1d4a999 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-18 07:55+0000\n" +"PO-Revision-Date: 2025-11-13 07:55+0000\n" "Last-Translator: Nathan \n" -"Language-Team: French \n" +"Language-Team: French " +"\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -315,8 +315,6 @@ msgid "Highlight matching brackets" msgstr "Surligner les crochets correspondants" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "Coloration syntaxique" @@ -876,10 +874,8 @@ msgid "Duplicate Tab" msgstr "Dupliquer l'onglet" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "Filtrer les langages" +msgstr "Langage du document" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From 0ec6e85ba7cf2b4d1fcf47a5b629a9a9a9aa6171 Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Wed, 12 Nov 2025 07:07:55 +0000 Subject: [PATCH 13/94] Translated using Weblate (Hebrew) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/he/ --- po/he.po | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/he.po b/po/he.po index da7fb9550..ca4c64686 100644 --- a/po/he.po +++ b/po/he.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-29 18:21+0000\n" +"PO-Revision-Date: 2025-11-13 07:55+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew " +"\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -313,8 +313,6 @@ msgid "Highlight matching brackets" msgstr "הדגשת הסוגר התואם" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "הדגשת תחביר" @@ -855,10 +853,8 @@ msgid "Duplicate Tab" msgstr "שכפול לשונית" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "סינון שפות" +msgstr "שפת המסמך" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From a36f0f5cbdd3da61e3aedaa8e9d34626816dcc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BA=D1=83=D0=B1=D0=B8=D0=BA=20=D0=BA=D1=80=D1=83=D0=B3?= =?UTF-8?q?=D0=BB=D1=8B=D0=B9?= Date: Wed, 12 Nov 2025 10:01:34 +0000 Subject: [PATCH 14/94] Translated using Weblate (Russian) Currently translated at 100.0% (258 of 258 strings) Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/ru/ --- po/ru.po | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/ru.po b/po/ru.po index ce8cfe171..3d492de6c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-22 08:07+0000\n" +"PO-Revision-Date: 2025-11-13 07:55+0000\n" "Last-Translator: кубик круглый \n" -"Language-Team: Russian \n" +"Language-Team: Russian " +"\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -316,8 +316,6 @@ msgid "Highlight matching brackets" msgstr "Подсвечивать парные скобки" #: src/Dialogs/PreferencesDialog.vala:113 -#, fuzzy -#| msgid "Syntax Highlighting" msgid "Syntax highlighting" msgstr "Подсветка синтаксиса" @@ -872,10 +870,8 @@ msgid "Duplicate Tab" msgstr "Дублировать вкладку" #: src/Widgets/FormatBar.vala:50 -#, fuzzy -#| msgid "Filter languages" msgid "Document language" -msgstr "Фильтр языков" +msgstr "Язык документа" #: src/Widgets/FormatBar.vala:60 msgid "Line number" From 0f1658321b1163bd25fdae8e39927dfc1d9c66df Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Wed, 12 Nov 2025 07:08:34 +0000 Subject: [PATCH 15/94] Translated using Weblate (Hebrew) Currently translated at 99.0% (104 of 105 strings) Translation: Code/Extra Translate-URL: https://l10n.elementaryos.org/projects/code/extra/he/ --- po/extra/he.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/extra/he.po b/po/extra/he.po index f9cf44f38..5baa722e2 100644 --- a/po/extra/he.po +++ b/po/extra/he.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-10 12:52+0000\n" -"PO-Revision-Date: 2025-10-29 18:21+0000\n" +"PO-Revision-Date: 2025-11-13 07:55+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew " +"\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,7 +158,7 @@ msgstr "החיפוש המקיף והמקומי מתייחסים לאותיות msgid "" "Opening a second window no longer results in duplicate project entries in " "the project chooser" -msgstr "" +msgstr "פתיחת חלון שני לא גורמת יותר לרשומות מיזם כפולות בבורר המיזמים" #: data/code.metainfo.xml.in:79 data/code.metainfo.xml.in:94 #: data/code.metainfo.xml.in:114 data/code.metainfo.xml.in:154 From 79766abde98d1aed83fd7d00667b0993a067b5fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 17 Nov 2025 05:04:51 -0800 Subject: [PATCH 16/94] SourceList/Item: use GLib.Menu (#1676) --- src/FolderManager/FileItem.vala | 6 ++---- src/FolderManager/FolderItem.vala | 6 ++---- src/FolderManager/ProjectFolderItem.vala | 6 ++---- src/Widgets/SourceList/SourceList.vala | 13 ++++++++----- 4 files changed, 14 insertions(+), 17 deletions(-) diff --git a/src/FolderManager/FileItem.vala b/src/FolderManager/FileItem.vala index 6b5f3092a..2c890c331 100644 --- a/src/FolderManager/FileItem.vala +++ b/src/FolderManager/FileItem.vala @@ -31,7 +31,7 @@ namespace Scratch.FolderManager { view.activate (file.path); } - public override Gtk.Menu? get_context_menu () { + public override GLib.Menu? get_context_menu () { GLib.FileInfo info = null; try { @@ -77,9 +77,7 @@ namespace Scratch.FolderManager { menu_model.append_section (null, external_actions_section); menu_model.append_section (null, direct_actions_section); - var menu = new Gtk.Menu.from_model (menu_model); - menu.insert_action_group (FileView.ACTION_GROUP, view.actions); - return menu; + return menu_model; } private GLib.MenuItem create_submenu_for_open_in (string? file_type) { diff --git a/src/FolderManager/FolderItem.vala b/src/FolderManager/FolderItem.vala index 1fb9c2069..651ed4b15 100644 --- a/src/FolderManager/FolderItem.vala +++ b/src/FolderManager/FolderItem.vala @@ -124,7 +124,7 @@ namespace Scratch.FolderManager { } } - public override Gtk.Menu? get_context_menu () { + public override GLib.Menu? get_context_menu () { GLib.FileInfo info = null; try { info = file.file.query_info (GLib.FileAttribute.STANDARD_CONTENT_TYPE, GLib.FileQueryInfoFlags.NONE); @@ -179,9 +179,7 @@ namespace Scratch.FolderManager { menu_model.append_section (null, direct_actions_section); menu_model.append_section (null, search_section); - var menu = new Gtk.Menu.from_model (menu_model); - menu.insert_action_group (FileView.ACTION_GROUP, view.actions); - return menu; + return menu_model; } protected GLib.MenuItem create_submenu_for_open_in (string? file_type) { diff --git a/src/FolderManager/ProjectFolderItem.vala b/src/FolderManager/ProjectFolderItem.vala index 78c2ecdae..1fd0b3764 100644 --- a/src/FolderManager/ProjectFolderItem.vala +++ b/src/FolderManager/ProjectFolderItem.vala @@ -130,7 +130,7 @@ namespace Scratch.FolderManager { } } - public override Gtk.Menu? get_context_menu () { + public override GLib.Menu? get_context_menu () { string file_type = ""; try { var info = file.file.query_info (GLib.FileAttribute.STANDARD_CONTENT_TYPE, GLib.FileQueryInfoFlags.NONE); @@ -303,9 +303,7 @@ namespace Scratch.FolderManager { menu_model.append_section (null, direct_actions_section); menu_model.append_section (null, search_actions_section); - var menu = new Gtk.Menu.from_model (menu_model); - menu.insert_action_group (FileView.ACTION_GROUP, view.actions); - return menu; + return menu_model; } protected GLib.MenuItem create_submenu_for_branch () { diff --git a/src/Widgets/SourceList/SourceList.vala b/src/Widgets/SourceList/SourceList.vala index 431182e23..84353e786 100644 --- a/src/Widgets/SourceList/SourceList.vala +++ b/src/Widgets/SourceList/SourceList.vala @@ -422,10 +422,10 @@ public class SourceList : Gtk.ScrolledWindow { * any context menu items should be actioned on the item instance rather than the selected item * in the SourceList * - * @return A {@link Gtk.Menu} or //null// if nothing should be displayed. + * @return A {@link GLib.Menu} or //null// if nothing should be displayed. * @since 0.2 */ - public virtual Gtk.Menu? get_context_menu () { + public virtual GLib.Menu? get_context_menu () { return null; } } @@ -2407,10 +2407,13 @@ public class SourceList : Gtk.ScrolledWindow { if (item != null) { var menu = item.get_context_menu (); if (menu != null) { - menu.attach_widget = this; - menu.popup_at_pointer (event); + var gtk_menu = new Gtk.Menu.from_model (menu) { + attach_widget = this + }; + + gtk_menu.popup_at_pointer (event); if (event == null) { - menu.select_first (false); + gtk_menu.select_first (false); } return true; From e71134ae982cfbf4a7a87c984cce8aca9ae4f942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Mon, 17 Nov 2025 05:29:26 -0800 Subject: [PATCH 17/94] SourceView: prepare context menu for GLib.Menu (#1675) * SourceView: prepare context menu for GLib.Menu * More string tweaks --------- Co-authored-by: Jeremy Wootten --- src/Widgets/SourceView.vala | 72 +++++++++++++------------------------ 1 file changed, 25 insertions(+), 47 deletions(-) diff --git a/src/Widgets/SourceView.vala b/src/Widgets/SourceView.vala index a196a3409..c09e4ba79 100644 --- a/src/Widgets/SourceView.vala +++ b/src/Widgets/SourceView.vala @@ -578,72 +578,50 @@ namespace Scratch.Widgets { private void on_context_menu (Gtk.Menu menu) { scroll_mark_onscreen (buffer.get_mark ("insert")); - var sort_item = new Gtk.MenuItem (); - sort_item.sensitive = get_selected_line_count () > 1; - sort_item.add (new Granite.AccelLabel.from_action_name ( - _("Sort Selected Lines"), - MainWindow.ACTION_PREFIX + MainWindow.ACTION_SORT_LINES - )); - sort_item.activate.connect (sort_selected_lines); - - menu.add (sort_item); + var sort_item = new Gtk.MenuItem.with_label (_("Sort Lines")) { + action_name = MainWindow.ACTION_PREFIX + MainWindow.ACTION_SORT_LINES + }; - var add_edit_item = new Gtk.MenuItem () { + var add_edit_item = new Gtk.MenuItem.with_label (_("Mark Line")) { action_name = MainWindow.ACTION_PREFIX + MainWindow.ACTION_ADD_MARK }; - add_edit_item.add (new Granite.AccelLabel.from_action_name ( - _("Mark Current Line"), - add_edit_item.action_name - )); - menu.add (add_edit_item); - - var previous_edit_item = new Gtk.MenuItem () { - sensitive = navmark_gutter_renderer.has_marks, + var previous_edit_item = new Gtk.MenuItem.with_label (_("Previous Mark")) { action_name = MainWindow.ACTION_PREFIX + MainWindow.ACTION_PREVIOUS_MARK }; - previous_edit_item.add (new Granite.AccelLabel.from_action_name ( - _("Goto Previous Edit Mark"), - previous_edit_item.action_name - - )); - menu.add (previous_edit_item); - var next_edit_item = new Gtk.MenuItem () { - sensitive = navmark_gutter_renderer.has_marks, + var next_edit_item = new Gtk.MenuItem.with_label (_("Next Mark")) { action_name = MainWindow.ACTION_PREFIX + MainWindow.ACTION_NEXT_MARK }; - next_edit_item.add (new Granite.AccelLabel.from_action_name ( - _("Goto Next Edit Mark"), - next_edit_item.action_name - )); + menu.add (sort_item); + menu.add (add_edit_item); + menu.add (previous_edit_item); menu.add (next_edit_item); - if (!navmark_gutter_renderer.has_marks) { - previous_edit_item.action_name = ""; - previous_edit_item.sensitive = false; - next_edit_item.action_name = ""; - next_edit_item.sensitive = false; - } - if (buffer is Gtk.SourceBuffer) { - var can_comment = CommentToggler.language_has_comments (((Gtk.SourceBuffer) buffer).get_language ()); + var comment_item = new Gtk.MenuItem.with_label (_("Toggle Comment")) { + action_name = MainWindow.ACTION_PREFIX + MainWindow.ACTION_TOGGLE_COMMENT + }; - var comment_item = new Gtk.MenuItem (); - comment_item.sensitive = can_comment; - comment_item.add (new Granite.AccelLabel.from_action_name ( - _("Toggle Comment"), - MainWindow.ACTION_PREFIX + MainWindow.ACTION_TOGGLE_COMMENT - )); - comment_item.activate.connect (() => { - CommentToggler.toggle_comment ((Gtk.SourceBuffer) buffer); - }); + var can_comment = CommentToggler.language_has_comments (((Gtk.SourceBuffer) buffer).get_language ()); + if (!can_comment) { + comment_item.action_name = ""; + } menu.add (comment_item); } menu.show_all (); + + if (!(get_selected_line_count () > 1)) { + sort_item.action_name = ""; + } + + if (!navmark_gutter_renderer.has_marks) { + previous_edit_item.action_name = ""; + next_edit_item.action_name = ""; + } } private static int calculate_bottom_margin (int height_in_px) { From 42f97f539dc348e6dcc0a59723c61bfc9a10eaaa Mon Sep 17 00:00:00 2001 From: elementaryBot Date: Mon, 17 Nov 2025 13:30:52 +0000 Subject: [PATCH 18/94] Update translation template --- po/extra/extra.pot | 2 +- po/io.elementary.code.pot | 54 +++++++++++++++++++-------------------- po/plugins/plugins.pot | 2 +- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 4b397f127..1da3aec9a 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/io.elementary.code.pot b/po/io.elementary.code.pot index bf6f29313..60510bca8 100644 --- a/po/io.elementary.code.pot +++ b/po/io.elementary.code.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.code\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -433,11 +433,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -449,31 +449,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -518,27 +518,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1021,23 +1021,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/plugins/plugins.pot b/po/plugins/plugins.pot index ae05400c5..d9b642f9a 100644 --- a/po/plugins/plugins.pot +++ b/po/plugins/plugins.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 157525b86d15888d4d02d737a3c4bcebb7f650e1 Mon Sep 17 00:00:00 2001 From: Weblate Date: Mon, 17 Nov 2025 13:31:00 +0000 Subject: [PATCH 19/94] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Code/Code Translate-URL: https://l10n.elementaryos.org/projects/code/code/ --- po/aa.po | 54 +++++++++++++++---------------- po/ab.po | 54 +++++++++++++++---------------- po/ae.po | 54 +++++++++++++++---------------- po/af.po | 54 +++++++++++++++---------------- po/ak.po | 58 +++++++++++++++++---------------- po/am.po | 77 +++++++++++++++++++++++--------------------- po/an.po | 54 +++++++++++++++---------------- po/ar.po | 75 ++++++++++++++++++++++--------------------- po/as.po | 54 +++++++++++++++---------------- po/ast.po | 54 +++++++++++++++---------------- po/av.po | 54 +++++++++++++++---------------- po/ay.po | 54 +++++++++++++++---------------- po/az.po | 54 +++++++++++++++---------------- po/ba.po | 54 +++++++++++++++---------------- po/be.po | 78 ++++++++++++++++++++++++-------------------- po/bg.po | 77 +++++++++++++++++++++++--------------------- po/bh.po | 54 +++++++++++++++---------------- po/bi.po | 54 +++++++++++++++---------------- po/bm.po | 54 +++++++++++++++---------------- po/bn.po | 77 +++++++++++++++++++++++--------------------- po/bo.po | 54 +++++++++++++++---------------- po/br.po | 54 +++++++++++++++---------------- po/bs.po | 75 ++++++++++++++++++++++--------------------- po/ca.po | 82 ++++++++++++++++++++++++++--------------------- po/ca@valencia.po | 77 +++++++++++++++++++++++--------------------- po/ce.po | 54 +++++++++++++++---------------- po/ch.po | 54 +++++++++++++++---------------- po/ckb.po | 75 ++++++++++++++++++++++--------------------- po/co.po | 54 +++++++++++++++---------------- po/cr.po | 54 +++++++++++++++---------------- po/cs.po | 75 ++++++++++++++++++++++--------------------- po/cu.po | 54 +++++++++++++++---------------- po/cv.po | 54 +++++++++++++++---------------- po/cy.po | 54 +++++++++++++++---------------- po/da.po | 75 ++++++++++++++++++++++--------------------- po/de.po | 75 ++++++++++++++++++++++--------------------- po/dv.po | 54 +++++++++++++++---------------- po/dz.po | 54 +++++++++++++++---------------- po/ee.po | 54 +++++++++++++++---------------- po/el.po | 77 +++++++++++++++++++++++--------------------- po/en_AU.po | 77 +++++++++++++++++++++++--------------------- po/en_CA.po | 73 ++++++++++++++++++++--------------------- po/en_GB.po | 78 ++++++++++++++++++++++++-------------------- po/eo.po | 75 ++++++++++++++++++++++--------------------- po/es.po | 78 ++++++++++++++++++++++++-------------------- po/et.po | 77 +++++++++++++++++++++++--------------------- po/eu.po | 77 +++++++++++++++++++++++--------------------- po/fa.po | 65 +++++++++++++++++++------------------ po/ff.po | 54 +++++++++++++++---------------- po/fi.po | 77 +++++++++++++++++++++++--------------------- po/fj.po | 54 +++++++++++++++---------------- po/fo.po | 54 +++++++++++++++---------------- po/fr.po | 82 ++++++++++++++++++++++++++--------------------- po/fr_CA.po | 54 +++++++++++++++---------------- po/fy.po | 72 ++++++++++++++++++++--------------------- po/ga.po | 54 +++++++++++++++---------------- po/gd.po | 54 +++++++++++++++---------------- po/gl.po | 75 ++++++++++++++++++++++--------------------- po/gn.po | 54 +++++++++++++++---------------- po/gu.po | 72 ++++++++++++++++++++--------------------- po/gv.po | 54 +++++++++++++++---------------- po/ha.po | 54 +++++++++++++++---------------- po/he.po | 82 ++++++++++++++++++++++++++--------------------- po/hi.po | 75 ++++++++++++++++++++++--------------------- po/ho.po | 54 +++++++++++++++---------------- po/hr.po | 73 ++++++++++++++++++++--------------------- po/ht.po | 54 +++++++++++++++---------------- po/hu.po | 78 ++++++++++++++++++++++++-------------------- po/hy.po | 54 +++++++++++++++---------------- po/hz.po | 54 +++++++++++++++---------------- po/ia.po | 54 +++++++++++++++---------------- po/id.po | 75 ++++++++++++++++++++++--------------------- po/ie.po | 54 +++++++++++++++---------------- po/ig.po | 54 +++++++++++++++---------------- po/ii.po | 54 +++++++++++++++---------------- po/ik.po | 54 +++++++++++++++---------------- po/io.po | 54 +++++++++++++++---------------- po/is.po | 54 +++++++++++++++---------------- po/it.po | 75 ++++++++++++++++++++++--------------------- po/iu.po | 54 +++++++++++++++---------------- po/ja.po | 78 ++++++++++++++++++++++++-------------------- po/jv.po | 61 +++++++++++++++++------------------ po/ka.po | 75 ++++++++++++++++++++++--------------------- po/kg.po | 54 +++++++++++++++---------------- po/ki.po | 54 +++++++++++++++---------------- po/kj.po | 54 +++++++++++++++---------------- po/kk.po | 54 +++++++++++++++---------------- po/kl.po | 54 +++++++++++++++---------------- po/km.po | 77 +++++++++++++++++++++++--------------------- po/kn.po | 54 +++++++++++++++---------------- po/ko.po | 75 ++++++++++++++++++++++--------------------- po/kr.po | 54 +++++++++++++++---------------- po/ks.po | 54 +++++++++++++++---------------- po/ku.po | 54 +++++++++++++++---------------- po/kv.po | 54 +++++++++++++++---------------- po/kw.po | 54 +++++++++++++++---------------- po/ky.po | 54 +++++++++++++++---------------- po/la.po | 54 +++++++++++++++---------------- po/lb.po | 54 +++++++++++++++---------------- po/lg.po | 54 +++++++++++++++---------------- po/li.po | 54 +++++++++++++++---------------- po/ln.po | 54 +++++++++++++++---------------- po/lo.po | 54 +++++++++++++++---------------- po/lt.po | 75 ++++++++++++++++++++++--------------------- po/lu.po | 54 +++++++++++++++---------------- po/lv.po | 77 +++++++++++++++++++++++--------------------- po/mg.po | 54 +++++++++++++++---------------- po/mh.po | 54 +++++++++++++++---------------- po/mi.po | 54 +++++++++++++++---------------- po/mk.po | 58 +++++++++++++++++---------------- po/ml.po | 54 +++++++++++++++---------------- po/mn.po | 54 +++++++++++++++---------------- po/mr.po | 56 ++++++++++++++++---------------- po/ms.po | 73 ++++++++++++++++++++--------------------- po/mt.po | 54 +++++++++++++++---------------- po/my.po | 54 +++++++++++++++---------------- po/na.po | 54 +++++++++++++++---------------- po/nb.po | 75 ++++++++++++++++++++++--------------------- po/nd.po | 54 +++++++++++++++---------------- po/ne.po | 65 +++++++++++++++++++------------------ po/ng.po | 54 +++++++++++++++---------------- po/nl.po | 75 ++++++++++++++++++++++--------------------- po/nn.po | 75 ++++++++++++++++++++++--------------------- po/no.po | 54 +++++++++++++++---------------- po/nr.po | 54 +++++++++++++++---------------- po/nv.po | 54 +++++++++++++++---------------- po/ny.po | 54 +++++++++++++++---------------- po/oc.po | 54 +++++++++++++++---------------- po/oj.po | 54 +++++++++++++++---------------- po/om.po | 54 +++++++++++++++---------------- po/or.po | 54 +++++++++++++++---------------- po/os.po | 54 +++++++++++++++---------------- po/pa.po | 56 ++++++++++++++++---------------- po/pi.po | 54 +++++++++++++++---------------- po/pl.po | 78 ++++++++++++++++++++++++-------------------- po/ps.po | 54 +++++++++++++++---------------- po/pt.po | 75 ++++++++++++++++++++++--------------------- po/pt_BR.po | 78 ++++++++++++++++++++++++-------------------- po/qu.po | 54 +++++++++++++++---------------- po/rm.po | 54 +++++++++++++++---------------- po/rn.po | 54 +++++++++++++++---------------- po/ro.po | 77 +++++++++++++++++++++++--------------------- po/ro_MD.po | 54 +++++++++++++++---------------- po/ru.po | 82 ++++++++++++++++++++++++++--------------------- po/rue.po | 65 +++++++++++++++++++------------------ po/rw.po | 54 +++++++++++++++---------------- po/sa.po | 54 +++++++++++++++---------------- po/sc.po | 54 +++++++++++++++---------------- po/sd.po | 54 +++++++++++++++---------------- po/se.po | 54 +++++++++++++++---------------- po/sg.po | 54 +++++++++++++++---------------- po/si.po | 54 +++++++++++++++---------------- po/sk.po | 75 ++++++++++++++++++++++--------------------- po/sl.po | 75 ++++++++++++++++++++++--------------------- po/sm.po | 54 +++++++++++++++---------------- po/sma.po | 54 +++++++++++++++---------------- po/sn.po | 54 +++++++++++++++---------------- po/so.po | 54 +++++++++++++++---------------- po/sq.po | 77 +++++++++++++++++++++++--------------------- po/sr.po | 75 ++++++++++++++++++++++--------------------- po/ss.po | 54 +++++++++++++++---------------- po/st.po | 54 +++++++++++++++---------------- po/su.po | 54 +++++++++++++++---------------- po/sv.po | 82 ++++++++++++++++++++++++++--------------------- po/sw.po | 54 +++++++++++++++---------------- po/szl.po | 56 ++++++++++++++++---------------- po/ta.po | 54 +++++++++++++++---------------- po/te.po | 54 +++++++++++++++---------------- po/tg.po | 54 +++++++++++++++---------------- po/th.po | 77 +++++++++++++++++++++++--------------------- po/ti.po | 54 +++++++++++++++---------------- po/tk.po | 54 +++++++++++++++---------------- po/tl.po | 77 +++++++++++++++++++++++--------------------- po/tn.po | 54 +++++++++++++++---------------- po/to.po | 54 +++++++++++++++---------------- po/tr.po | 75 ++++++++++++++++++++++--------------------- po/ts.po | 54 +++++++++++++++---------------- po/tt.po | 54 +++++++++++++++---------------- po/tw.po | 54 +++++++++++++++---------------- po/ty.po | 54 +++++++++++++++---------------- po/ug.po | 77 +++++++++++++++++++++++--------------------- po/uk.po | 78 ++++++++++++++++++++++++-------------------- po/ur.po | 77 +++++++++++++++++++++++--------------------- po/uz.po | 56 ++++++++++++++++---------------- po/ve.po | 54 +++++++++++++++---------------- po/vi.po | 61 +++++++++++++++++------------------ po/vo.po | 54 +++++++++++++++---------------- po/wa.po | 54 +++++++++++++++---------------- po/wo.po | 54 +++++++++++++++---------------- po/xh.po | 54 +++++++++++++++---------------- po/yi.po | 54 +++++++++++++++---------------- po/yo.po | 54 +++++++++++++++---------------- po/za.po | 54 +++++++++++++++---------------- po/zh.po | 56 ++++++++++++++++---------------- po/zh_CN.po | 75 ++++++++++++++++++++++--------------------- po/zh_HANS.po | 54 +++++++++++++++---------------- po/zh_HANT.po | 54 +++++++++++++++---------------- po/zh_HK.po | 54 +++++++++++++++---------------- po/zh_TW.po | 78 ++++++++++++++++++++++++-------------------- po/zu.po | 54 +++++++++++++++---------------- 200 files changed, 6220 insertions(+), 5968 deletions(-) diff --git a/po/aa.po b/po/aa.po index bbf2bc964..ab0720780 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ab.po b/po/ab.po index bbf2bc964..ab0720780 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ae.po b/po/ae.po index a8030f022..d082fb58b 100644 --- a/po/ae.po +++ b/po/ae.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -9,7 +9,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -420,11 +420,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -436,31 +436,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -505,27 +505,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1008,23 +1008,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/af.po b/po/af.po index c744c7b15..78587cdd8 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2017-04-09 21:07+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Afrikaans \n" @@ -22,7 +22,7 @@ msgstr "" msgid "New Tab" msgstr "Nuwe Blad" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Nuwe Venster" @@ -448,11 +448,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -464,34 +464,34 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "Terminaal" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "Nuwe Blad" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 #, fuzzy msgid "new file" msgstr "Teks lêers" @@ -538,27 +538,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1070,25 +1070,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy #| msgid "Text Editor" -msgid "Goto Next Edit Mark" +msgid "Next Mark" msgstr "Teks Redigeerder" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ak.po b/po/ak.po index 9139ec017..c856c35f4 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2017-04-09 20:11+0000\n" "Last-Translator: aberba \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "Tab Foforɔ" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Window Foforɔ" @@ -434,11 +434,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 #, fuzzy msgid "Open In" msgstr "Bue file" @@ -452,32 +452,32 @@ msgstr "" msgid "Find in Folder…" msgstr "Bue file" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "Tab Foforɔ" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 #, fuzzy msgid "new file" msgstr "File foforɔ" @@ -526,27 +526,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "Bue file" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1059,27 +1059,29 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" -msgstr "" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Remove Current View" +msgid "Sort Lines" +msgstr "Yi Seesei View No Fi Hɔ" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "Yi Seesei View No Fi Hɔ" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy #| msgid "Text Editor" -msgid "Goto Next Edit Mark" +msgid "Next Mark" msgstr "Ntwerɛyɛ Dwumadi" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/am.po b/po/am.po index 4fa2b6e49..a9b2e7d7f 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-21 13:39+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: Amharic \n" @@ -22,7 +22,7 @@ msgstr "" msgid "New Tab" msgstr "አዲስ ንዑስ መስኮት" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "አዲስ መስኮት" @@ -461,11 +461,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 #, fuzzy msgid "Open In" msgstr "መክፈቻ" @@ -480,35 +480,35 @@ msgstr "ፎልደሮች" msgid "Find in Folder…" msgstr "ፎልደር መክፈቻ" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "ተርሚናል" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 #, fuzzy msgid "Folder" msgstr "ፎልደሮች" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "አዲስ ንዑስ መስኮት" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 #, fuzzy msgid "new file" msgstr "አዲስ ፋይል" @@ -559,29 +559,29 @@ msgstr[1] "" msgid "Find in Project…" msgstr "ፎልደር መክፈቻ" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 #, fuzzy msgid "New Branch…" msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 #, fuzzy msgid "Branch" msgstr "የ ስክራች ማሰናጃዎች መቀየሪያ" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1099,27 +1099,31 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" -msgstr "" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Remove Current View" +msgid "Sort Lines" +msgstr "የ አሁኑን መመልከቻ ማስወገጃ" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "የ አሁኑን መመልከቻ ማስወገጃ" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "ቀደም ያለው ንዑስ መስኮት" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "የጽሁፍ ማረሚያ" +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "የሚቀጥለው ንዑስ መስኮት" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" @@ -1232,6 +1236,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "የጽሁፍ ማረሚያ" + #~ msgid "Tab width:" #~ msgstr "የ ንዑስ መስኮት ስፋት:" @@ -1318,12 +1327,6 @@ msgstr "" #~ msgid "New file from Clipboard" #~ msgstr "አዲስ ፋይል ከ ቁራጭ ሰሌዳ" -#~ msgid "Next Tab" -#~ msgstr "የሚቀጥለው ንዑስ መስኮት" - -#~ msgid "Previous Tab" -#~ msgstr "ቀደም ያለው ንዑስ መስኮት" - #~ msgid "Fullscreen" #~ msgstr "በሙሉ መመልከቻ ዘዴ" diff --git a/po/an.po b/po/an.po index 53fd964d7..12fc74c99 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-21 13:36+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -514,27 +514,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1019,25 +1019,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy #| msgid "Text Editor" -msgid "Goto Next Edit Mark" +msgid "Next Mark" msgstr "Editor de testo" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ar.po b/po/ar.po index 77abc9c4b..8ebc98422 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2021-09-06 18:12+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" @@ -24,7 +24,7 @@ msgstr "" msgid "New Tab" msgstr "لسان جديد" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "نافذة جديدة" @@ -486,11 +486,11 @@ msgstr "إعادة التسمية" msgid "Move to Trash" msgstr "انقل الى سلة المهملات" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "تطبيقات أخرى…" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "إفتح في" @@ -504,33 +504,33 @@ msgstr "المجلدات" msgid "Find in Folder…" msgstr "فتح مجلد المشروع…" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "الطرفية" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "مجلد" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "ملف فارغ" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "جديد" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "ملف غير مسمى" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "ملف جديد" @@ -590,31 +590,31 @@ msgstr[5] "" msgid "Find in Project…" msgstr "فتح مجلد المشروع…" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 #, fuzzy #| msgid "Branch" msgid "New Branch…" msgstr "تفرع" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "تفرع" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy #| msgid "%s, Modified" msgid "Modified" msgstr "%s, المعدل" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1165,27 +1165,31 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Sort Selected Lines" +msgid "Sort Lines" msgstr "رتب الأسطر التي تم اختيارها" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "إحذف منطقه العرض الحاليه" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Search" +msgid "Previous Mark" +msgstr "السابق" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "مُحرر النصوص" +#| msgid "Next Search" +msgid "Next Mark" +msgstr "التالي" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "تحويل لتعليق" @@ -1296,6 +1300,11 @@ msgstr "رجاءً قم بتثبيت قاموس [aspell] واحد على الأ msgid "%s - Word Completion" msgstr "اتمام %s من الكلمات" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "مُحرر النصوص" + #~ msgid "Case sensitive:" #~ msgstr "حساسية حالة الأحرف:" @@ -1554,12 +1563,6 @@ msgstr "اتمام %s من الكلمات" #~ msgid "Create a new document in a new tab" #~ msgstr "انشأ مستند جديد في لسان جديد" -#~ msgid "Previous Search" -#~ msgstr "السابق" - -#~ msgid "Next Search" -#~ msgstr "التالي" - #~ msgid "Create a new document from a template" #~ msgstr "انشاء مستند جديد إنطلاقا من نموذج" diff --git a/po/as.po b/po/as.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ast.po b/po/ast.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/av.po b/po/av.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ay.po b/po/ay.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/az.po b/po/az.po index 4a1fcb393..2ad59e839 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+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" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/be.po b/po/be.po index 4ca735106..ae8c603a4 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2025-06-29 18:55+0000\n" "Last-Translator: lenify \n" "Language-Team: Belarusian \n" "Language-Team: Bulgarian \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/bi.po b/po/bi.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/bm.po b/po/bm.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/bn.po b/po/bn.po index c925ea4cb..f605508ae 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2017-01-21 09:06+0000\n" "Last-Translator: Hasan Sumon \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "নতুন ট্যাব" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "নতুন উইন্ডো" @@ -463,11 +463,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 #, fuzzy msgid "Open In" msgstr "খুলুন" @@ -482,35 +482,35 @@ msgstr "ফোল্ডারসমূহ" msgid "Find in Folder…" msgstr "একটি ফোল্ডার খুলুন" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "টার্মিনাল" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 #, fuzzy msgid "Folder" msgstr "ফোল্ডারসমূহ" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "নতুন ট্যাব" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 #, fuzzy msgid "new file" msgstr "নতুন ফাইল" @@ -561,29 +561,29 @@ msgstr[1] "" msgid "Find in Project…" msgstr "একটি ফোল্ডার খুলুন" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 #, fuzzy msgid "New Branch…" msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 #, fuzzy msgid "Branch" msgstr "স্ক্র্যাচ সেটিংস পরিবর্তন করুন" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1124,27 +1124,31 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" -msgstr "" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Remove Current View" +msgid "Sort Lines" +msgstr "বর্তমান ভিউ সরিয়ে দিন" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "বর্তমান ভিউ সরিয়ে দিন" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "পূর্ববতী ট্যাব" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "টেক্সট ইডিটর" +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "পরবর্তী ট্যাব" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" @@ -1261,6 +1265,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - শব্দ পরিপূরণ" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "টেক্সট ইডিটর" + #, fuzzy, c-format #~| msgid "Current working directory" #~ msgid "Local repository working directory is %s" @@ -1502,12 +1511,6 @@ msgstr "%s - শব্দ পরিপূরণ" #~ msgid "New file from Clipboard" #~ msgstr "ক্লিপবোর্ড থেকে নতুন ফাইল" -#~ msgid "Next Tab" -#~ msgstr "পরবর্তী ট্যাব" - -#~ msgid "Previous Tab" -#~ msgstr "পূর্ববতী ট্যাব" - #~ msgid "Fullscreen" #~ msgstr "সম্পূর্ণ পর্দা জুড়ে" diff --git a/po/bo.po b/po/bo.po index b6851674d..6610a075f 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2019-08-29 15:22+0000\n" "Last-Translator: གངས་རྒྱན། \n" "Language-Team: Tibetan \n" @@ -18,7 +18,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -427,11 +427,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -443,31 +443,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -509,27 +509,27 @@ msgstr[0] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1012,23 +1012,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/br.po b/po/br.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/bs.po b/po/bs.po index 721062f50..91317c5b5 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+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-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,7 @@ msgstr "" msgid "New Tab" msgstr "Pestanya nova" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Finestra nova" @@ -447,11 +447,11 @@ msgstr "Canvia'n el nom" msgid "Move to Trash" msgstr "Mou a la paperera" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "Una altra aplicació…" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "Obre amb" @@ -463,31 +463,31 @@ msgstr "Carpetes" msgid "Find in Folder…" msgstr "Troba a la carpeta…" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "Plafó del terminal" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "Carpeta" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "Fitxer buit" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "Nou" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "carpeta sense nom" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "fitxer nou" @@ -532,27 +532,27 @@ msgstr[1] "Restaura %u documents amagats" msgid "Find in Project…" msgstr "Troba al projecte…" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "Local" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "Remot" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "Branca nova…" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "Branca" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "Modificat" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "Error en crear una branca nova: %s" @@ -1046,23 +1046,31 @@ msgstr "%d de %d" msgid "no results" msgstr "sense resultats" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Sort Selected Lines" +msgid "Sort Lines" msgstr "Classifica les línies seleccionades" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +#, fuzzy +#| msgid "Mark Current Line" +msgid "Mark Line" msgstr "Marca la línia actual" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "Ves a la marca d'edició anterior" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "Pestanya anterior" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" -msgstr "Ves a la marca d'edició següent" +#: src/Widgets/SourceView.vala:593 +#, fuzzy +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "Pestanya següent" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "Commuta el comentari" @@ -1169,6 +1177,12 @@ msgstr "Si us plau, instal·leu com a mínim un diccionari (aspell)." msgid "%s - Word Completion" msgstr "%s - Compleció de paraules" +#~ msgid "Goto Previous Edit Mark" +#~ msgstr "Ves a la marca d'edició anterior" + +#~ msgid "Goto Next Edit Mark" +#~ msgstr "Ves a la marca d'edició següent" + #~ msgid "Case sensitive:" #~ msgstr "Distinció de majúscules:" @@ -1471,12 +1485,6 @@ msgstr "%s - Compleció de paraules" #~ msgid "New file from Clipboard" #~ msgstr "Fitxer nou del porta-retalls" -#~ msgid "Next Tab" -#~ msgstr "Pestanya següent" - -#~ msgid "Previous Tab" -#~ msgstr "Pestanya anterior" - #~ msgid "Fullscreen" #~ msgstr "Pantalla completa" diff --git a/po/ca@valencia.po b/po/ca@valencia.po index 631553f75..94512b85b 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+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" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "Новая вкладка" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,32 +444,32 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "Новая вкладка" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -514,27 +514,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1019,23 +1019,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ch.po b/po/ch.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ckb.po b/po/ckb.po index f1257c75a..066865a73 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+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" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/cr.po b/po/cr.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/cs.po b/po/cs.po index 42c9a95ec..68dbacef8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2023-07-19 08:07+0000\n" "Last-Translator: Jakub Kyzr \n" "Language-Team: Czech \n" @@ -23,7 +23,7 @@ msgstr "" msgid "New Tab" msgstr "Nová karta" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Nové okno" @@ -474,11 +474,11 @@ msgstr "Přejmenovat" msgid "Move to Trash" msgstr "Přesunout do Koše" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "Jiná aplikace…" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "Otevřít v" @@ -490,33 +490,33 @@ msgstr "Složky" msgid "Find in Folder…" msgstr "Vyhledat ve složce…" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "Terminál" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "Složka" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "Prázdný soubor" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "Nový" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "složka bez názvu" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "nový soubor" @@ -566,27 +566,27 @@ msgstr[2] "Obnovit %u skrytých dokumentů" msgid "Find in Project…" msgstr "Vyhledat projekt…" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "Nová větev…" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "Větev" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "Změněno" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "Chyba při vytváření nové větve: „%s“" @@ -1098,27 +1098,31 @@ msgstr "%d z %d" msgid "no results" msgstr "nic nenalezeno" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Sort Selected Lines" +msgid "Sort Lines" msgstr "Seřadit vybrané řádky" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "Odstranit současné zobrazení" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "Předchozí karta" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "Textový editor" +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "Další karta" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "Zobraz/nezobraz. komentář" @@ -1225,6 +1229,11 @@ msgstr "Nainstalujte prosím alespoň jeden [aspell] slovník." msgid "%s - Word Completion" msgstr "%s – dokončování slov" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "Textový editor" + #~ msgid "Case sensitive:" #~ msgstr "Rozlišovat malá/VELKÁ písmena:" @@ -1501,12 +1510,6 @@ msgstr "%s – dokončování slov" #~ msgid "New file from Clipboard" #~ msgstr "Nový soubor ze schránky" -#~ msgid "Next Tab" -#~ msgstr "Další karta" - -#~ msgid "Previous Tab" -#~ msgstr "Předchozí karta" - #~ msgid "Fullscreen" #~ msgstr "Na celou obrazovku" diff --git a/po/cu.po b/po/cu.po index a8030f022..d082fb58b 100644 --- a/po/cu.po +++ b/po/cu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -9,7 +9,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -420,11 +420,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -436,31 +436,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -505,27 +505,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1008,23 +1008,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/cv.po b/po/cv.po index 03991e41a..a2383f8aa 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-21 13:37+0000\n" "Last-Translator: Mario Guerriero \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "Çĕнĕ вкладка" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Çĕнĕ чÿрече" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,32 +444,32 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "Çĕнĕ вкладка" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -515,27 +515,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1033,25 +1033,25 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy #| msgid "Text Editor" -msgid "Goto Next Edit Mark" +msgid "Next Mark" msgstr "Текст çырмалли" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/cy.po b/po/cy.po index 2b11cb6a9..f7193c0ac 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/da.po b/po/da.po index f1c2d2ca0..780eaf9b3 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2020-05-30 10:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" @@ -23,7 +23,7 @@ msgstr "" msgid "New Tab" msgstr "Nyt faneblad" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Nyt Vindue" @@ -483,11 +483,11 @@ msgstr "Omdøb" msgid "Move to Trash" msgstr "Flyt til Skrald" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "Anden Applikation…" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "Åbn I" @@ -501,33 +501,33 @@ msgstr "Mapper" msgid "Find in Folder…" msgstr "Åbn projekt mappe…" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "Terminal" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "Mappe" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "Tom Fil" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "Ny" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "unavngivet mappe" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "ny fil" @@ -575,31 +575,31 @@ msgstr[1] "" msgid "Find in Project…" msgstr "Åbn projekt mappe…" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 #, fuzzy #| msgid "Branch" msgid "New Branch…" msgstr "Branch" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "Branch" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy #| msgid "%s, Modified" msgid "Modified" msgstr "%s, Modificeret" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1142,27 +1142,31 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Sort Selected Lines" +msgid "Sort Lines" msgstr "Sorter Valgte Linjer" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "Fjern nuværende visning" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "Forrige faneblad" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "Tekstredigeringsprogram" +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "Næste faneblad" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "Slå Kommentarer til/fra" @@ -1273,6 +1277,11 @@ msgstr "Installer venligst mindst en [aspell] ordbog." msgid "%s - Word Completion" msgstr "%s - Fuldførsel af ord" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "Tekstredigeringsprogram" + #, fuzzy #~| msgid "Case Insensitive" #~ msgid "Case sensitive:" @@ -1555,12 +1564,6 @@ msgstr "%s - Fuldførsel af ord" #~ msgid "New file from Clipboard" #~ msgstr "Ny fil fra udklipsholder" -#~ msgid "Next Tab" -#~ msgstr "Næste faneblad" - -#~ msgid "Previous Tab" -#~ msgstr "Forrige faneblad" - #~ msgid "Fullscreen" #~ msgstr "Fuldskærm" diff --git a/po/de.po b/po/de.po index c23a87707..4bc20a32b 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: scratch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2025-04-11 19:55+0000\n" "Last-Translator: Uwe S \n" "Language-Team: German \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/dz.po b/po/dz.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/ee.po b/po/ee.po index de73c7803..932298bf1 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2015-12-18 20:01+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" msgid "New Tab" msgstr "" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "" @@ -428,11 +428,11 @@ msgstr "" msgid "Move to Trash" msgstr "" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 msgid "Open In" msgstr "" @@ -444,31 +444,31 @@ msgstr "" msgid "Find in Folder…" msgstr "" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 msgid "Terminal Pane" msgstr "" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 msgid "Folder" msgstr "" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "New" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "new file" msgstr "" @@ -513,27 +513,27 @@ msgstr[1] "" msgid "Find in Project…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 msgid "New Branch…" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 msgid "Branch" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1016,23 +1016,23 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" +#: src/Widgets/SourceView.vala:581 +msgid "Sort Lines" msgstr "" -#: src/Widgets/SourceView.vala:595 -msgid "Mark Current Line" +#: src/Widgets/SourceView.vala:585 +msgid "Mark Line" msgstr "" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" +#: src/Widgets/SourceView.vala:589 +msgid "Previous Mark" msgstr "" -#: src/Widgets/SourceView.vala:617 -msgid "Goto Next Edit Mark" +#: src/Widgets/SourceView.vala:593 +msgid "Next Mark" msgstr "" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" diff --git a/po/el.po b/po/el.po index 17b9bfbc7..c6eac05c6 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+0000\n" "PO-Revision-Date: 2019-09-10 14:54+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Greek \n" @@ -23,7 +23,7 @@ msgstr "" msgid "New Tab" msgstr "Νέα Καρτέλα" -#: src/Application.vala:42 src/FolderManager/FileItem.vala:87 +#: src/Application.vala:42 src/FolderManager/FileItem.vala:85 msgid "New Window" msgstr "Νέο Παράθυρο" @@ -474,11 +474,11 @@ msgstr "Μετονομασία" msgid "Move to Trash" msgstr "Μετακίνηση στον κάδο" -#: src/FolderManager/FileItem.vala:100 src/FolderManager/FolderItem.vala:198 +#: src/FolderManager/FileItem.vala:98 src/FolderManager/FolderItem.vala:196 msgid "Other Application…" msgstr "Άλλη εφαρμογή…" -#: src/FolderManager/FileItem.vala:115 src/FolderManager/FolderItem.vala:218 +#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:216 #, fuzzy msgid "Open In" msgstr "Άνοιγμα" @@ -493,35 +493,35 @@ msgstr "Φάκελοι" msgid "Find in Folder…" msgstr "Άνοιγμα ενός φακέλου" -#: src/FolderManager/FolderItem.vala:189 +#: src/FolderManager/FolderItem.vala:187 #, fuzzy #| msgid "Terminal" msgid "Terminal Pane" msgstr "Τερματικό" -#: src/FolderManager/FolderItem.vala:224 +#: src/FolderManager/FolderItem.vala:222 #, fuzzy msgid "Folder" msgstr "Φάκελοι" -#: src/FolderManager/FolderItem.vala:232 +#: src/FolderManager/FolderItem.vala:230 msgid "Empty File" msgstr "Άδειο αρχείο" #. scan all children #. No need to show status when children shown -#: src/FolderManager/FolderItem.vala:243 -#: src/FolderManager/ProjectFolderItem.vala:427 -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/FolderItem.vala:241 +#: src/FolderManager/ProjectFolderItem.vala:425 +#: src/FolderManager/ProjectFolderItem.vala:431 #, fuzzy msgid "New" msgstr "Νέα Καρτέλα" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 msgid "untitled folder" msgstr "φάκελος χωρίς τίτλο" -#: src/FolderManager/FolderItem.vala:399 +#: src/FolderManager/FolderItem.vala:397 #, fuzzy msgid "new file" msgstr "Νέο αρχείο" @@ -572,29 +572,29 @@ msgstr[1] "" msgid "Find in Project…" msgstr "Άνοιγμα ενός φακέλου" -#: src/FolderManager/ProjectFolderItem.vala:320 +#: src/FolderManager/ProjectFolderItem.vala:318 msgid "Local" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:337 +#: src/FolderManager/ProjectFolderItem.vala:335 msgid "Remote" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:352 +#: src/FolderManager/ProjectFolderItem.vala:350 #, fuzzy msgid "New Branch…" msgstr "Αλλαγή ρυθμίσεων του Scratch" -#: src/FolderManager/ProjectFolderItem.vala:377 +#: src/FolderManager/ProjectFolderItem.vala:375 #, fuzzy msgid "Branch" msgstr "Αλλαγή ρυθμίσεων του Scratch" -#: src/FolderManager/ProjectFolderItem.vala:433 +#: src/FolderManager/ProjectFolderItem.vala:431 msgid "Modified" msgstr "" -#: src/FolderManager/ProjectFolderItem.vala:471 +#: src/FolderManager/ProjectFolderItem.vala:469 #, c-format msgid "Error while creating new branch: “%s”" msgstr "" @@ -1139,27 +1139,31 @@ msgstr "" msgid "no results" msgstr "" -#: src/Widgets/SourceView.vala:584 -msgid "Sort Selected Lines" -msgstr "" +#: src/Widgets/SourceView.vala:581 +#, fuzzy +#| msgid "Remove Current View" +msgid "Sort Lines" +msgstr "Αφαίρεση Τρέχουσας Προβολής" -#: src/Widgets/SourceView.vala:595 +#: src/Widgets/SourceView.vala:585 #, fuzzy #| msgid "Remove Current View" -msgid "Mark Current Line" +msgid "Mark Line" msgstr "Αφαίρεση Τρέχουσας Προβολής" -#: src/Widgets/SourceView.vala:606 -msgid "Goto Previous Edit Mark" -msgstr "" +#: src/Widgets/SourceView.vala:589 +#, fuzzy +#| msgid "Previous Tab" +msgid "Previous Mark" +msgstr "Προηγούμενη Καρτέλα" -#: src/Widgets/SourceView.vala:617 +#: src/Widgets/SourceView.vala:593 #, fuzzy -#| msgid "Text Editor" -msgid "Goto Next Edit Mark" -msgstr "Επεξεργαστής Κειμένου" +#| msgid "Next Tab" +msgid "Next Mark" +msgstr "Επόμενη Καρτέλα" -#: src/Widgets/SourceView.vala:636 +#: src/Widgets/SourceView.vala:603 msgid "Toggle Comment" msgstr "" @@ -1274,6 +1278,11 @@ msgstr "" msgid "%s - Word Completion" msgstr "%s - Συμπλήρωση Λέξεων" +#, fuzzy +#~| msgid "Text Editor" +#~ msgid "Goto Next Edit Mark" +#~ msgstr "Επεξεργαστής Κειμένου" + #, fuzzy, c-format #~| msgid "Current working directory" #~ msgid "Local repository working directory is %s" @@ -1487,12 +1496,6 @@ msgstr "%s - Συμπλήρωση Λέξεων" #~ msgid "New file from Clipboard" #~ msgstr "Νέο αρχείο από το πρόχειρο" -#~ msgid "Next Tab" -#~ msgstr "Επόμενη Καρτέλα" - -#~ msgid "Previous Tab" -#~ msgstr "Προηγούμενη Καρτέλα" - #~ msgid "Fullscreen" #~ msgstr "Πλήρης οθόνη" diff --git a/po/en_AU.po b/po/en_AU.po index e7ebd57b6..816bc2914 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: 2025-11-10 12:52+0000\n" +"POT-Creation-Date: 2025-11-17 13:30+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)