diff --git a/data/Application.css b/data/Application.css
index 7bab5b8cab..b65b64ad25 100644
--- a/data/Application.css
+++ b/data/Application.css
@@ -45,7 +45,7 @@ textview.scrubber {
background-color: transparent;
}
-.fuzzy-item.preselect-fuzzy,
+.fuzzy-item:focused,
.fuzzy-item:hover {
border-radius: 0.5rem;
}
@@ -54,22 +54,15 @@ textview.scrubber {
background-color: @theme_unfocused_selected_bg_color;
}
-.fuzzy-item.preselect-fuzzy {
+.fuzzy-item:focused {
background-color: @selected_bg_color;
+ color: @selected_fg_color;
}
.fuzzy-item .fuzzy-file-icon {
margin-right: 0.5rem;
}
-.fuzzy-item label:nth-child(1) {
- font-weight: 700;
-}
-
-.fuzzy-item.preselect-fuzzy label {
- opacity: 0.7;
-}
-
.symbol-outline > box.horizontal {
margin: 1em;
}
diff --git a/data/code.metainfo.xml.in b/data/code.metainfo.xml.in
index ba8ce5ea21..1a61c6b741 100644
--- a/data/code.metainfo.xml.in
+++ b/data/code.metainfo.xml.in
@@ -68,6 +68,21 @@
contact_AT_elementary.io
+
+
+ Minor updates:
+
+
+
+ Word completion retains deleted words
+ Word completion omits first word in document until refreshed
+ Changing pane visibility in one window affects all windows
+ Code uses system document font instead of monospace font by default
+
+
+
Improvements:
diff --git a/meson.build b/meson.build
index 0e5c4b302e..9b52aef1e0 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@ project(
'io.elementary.code',
'vala', 'c',
meson_version: '>= 0.58.0',
- version: '8.3.1'
+ version: '8.3.2'
)
add_project_arguments([
diff --git a/plugins/fuzzy-search/file-item.vala b/plugins/FuzzySearch/FileItem.vala
similarity index 70%
rename from plugins/fuzzy-search/file-item.vala
rename to plugins/FuzzySearch/FileItem.vala
index e5f6563fde..ef8cb5ca6d 100644
--- a/plugins/fuzzy-search/file-item.vala
+++ b/plugins/FuzzySearch/FileItem.vala
@@ -24,11 +24,12 @@ public class FileItem : Gtk.ListBoxRow {
var path_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 1);
path_box.valign = Gtk.Align.CENTER;
- var path_label = new Gtk.Label (
- @"$(should_distinguish_project ? result.project + " • " : "")$(result.relative_path)"
- );
-
- path_label.halign = Gtk.Align.START;
+ var path_label = new Gtk.Label (get_path_label (should_distinguish_project)) {
+ halign = START,
+ ellipsize = MIDDLE
+ };
+ path_label.get_style_context ().add_class (Gtk.STYLE_CLASS_DIM_LABEL);
+ path_label.get_style_context ().add_class (Granite.STYLE_CLASS_SMALL_LABEL);
var filename_label = new Gtk.Label (Path.get_basename (result.relative_path));
filename_label.halign = Gtk.Align.START;
@@ -56,4 +57,16 @@ public class FileItem : Gtk.ListBoxRow {
this.child = container_box;
}
+
+ private string get_path_label (bool show_project) {
+ if (!show_project) {
+ return result.relative_path;
+ }
+
+ if (Gtk.StateFlags.DIR_RTL in get_state_flags ()) {
+ return "%s ← %s".printf (result.relative_path, result.project);
+ }
+
+ return "%s → %s".printf (result.project, result.relative_path);
+ }
}
diff --git a/plugins/fuzzy-search/fuzzy-finder.vala b/plugins/FuzzySearch/FuzzyFinder.vala
similarity index 100%
rename from plugins/fuzzy-search/fuzzy-finder.vala
rename to plugins/FuzzySearch/FuzzyFinder.vala
diff --git a/plugins/fuzzy-search/fuzzy-search.vala b/plugins/FuzzySearch/FuzzySearch.vala
similarity index 100%
rename from plugins/fuzzy-search/fuzzy-search.vala
rename to plugins/FuzzySearch/FuzzySearch.vala
diff --git a/plugins/fuzzy-search/fuzzy-search-indexer.vala b/plugins/FuzzySearch/FuzzySearchIndexer.vala
similarity index 100%
rename from plugins/fuzzy-search/fuzzy-search-indexer.vala
rename to plugins/FuzzySearch/FuzzySearchIndexer.vala
diff --git a/plugins/FuzzySearch/FuzzySearchPopover.vala b/plugins/FuzzySearch/FuzzySearchPopover.vala
new file mode 100644
index 0000000000..c314b5a1e1
--- /dev/null
+++ b/plugins/FuzzySearch/FuzzySearchPopover.vala
@@ -0,0 +1,277 @@
+/*
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ * SPDX-FileCopyrightText: 2023-2026 elementary, Inc.
+ *
+ * Authored by: Marvin Ahlgrimm
+ * Colin Kiama
+ */
+
+public class Scratch.FuzzySearchPopover : Gtk.Popover {
+ public signal void open_file (string filepath);
+ public signal void close_search ();
+
+ public Scratch.MainWindow current_window { get; construct; }
+ public Scratch.Services.FuzzySearchIndexer search_indexer { get; construct; }
+ public bool sidebar_is_visible { get; set; }
+
+ private Gtk.SearchEntry search_term_entry;
+ private Services.FuzzyFinder fuzzy_finder;
+ private Gtk.ListBox search_result_container;
+ private ListStore search_list_store;
+ private int preselected_index;
+ private Gtk.ScrolledWindow scrolled;
+ private Scratch.Services.FuzzySearchIndexer indexer;
+ private int max_items;
+ private Gee.LinkedList cancellables;
+ private Gtk.EventControllerKey search_term_entry_key_controller;
+ private Gtk.Label title_label;
+ private string current_doc_project;
+
+ public FuzzySearchPopover (Scratch.Services.FuzzySearchIndexer search_indexer, Scratch.MainWindow window) {
+ Object (
+ current_window: window,
+ search_indexer: search_indexer
+ );
+ }
+
+ construct {
+ modal = true;
+ relative_to = current_window.document_view;
+ width_request = 500;
+ pointing_to = { 0, 32, 1, 1 };
+ get_style_context ().add_class ("fuzzy-popover");
+
+ title_label = new Granite.HeaderLabel (_("Find project files"));
+
+ search_term_entry = new Gtk.SearchEntry () {
+ hexpand = true,
+ valign = START
+ };
+
+ search_list_store = new ListStore (typeof (FileItem));
+ search_result_container = new Gtk.ListBox () {
+ selection_mode = BROWSE,
+ activate_on_single_click = true
+ };
+ search_result_container.get_style_context ().add_class ("fuzzy-list");
+ search_result_container.bind_model (search_list_store, (obj) => (FileItem)obj);
+
+ var entry_layout = new Gtk.Box (VERTICAL, 0) {
+ valign = START
+ };
+ entry_layout.add (title_label);
+ entry_layout.add (search_term_entry);
+
+ scrolled = new Gtk.ScrolledWindow (null, null) {
+ propagate_natural_height = true,
+ hexpand = true,
+ vexpand = true,
+ child = search_result_container,
+ hscrollbar_policy = NEVER
+ };
+
+ var box = new Gtk.Box (VERTICAL, 0);
+ box.add (entry_layout);
+ box.add (scrolled);
+ box.show_all ();
+
+ scrolled.hide ();
+
+ add (box);
+
+ fuzzy_finder = new Services.FuzzyFinder (search_indexer.project_paths);
+ indexer = search_indexer;
+ cancellables = new Gee.LinkedList ();
+
+ search_result_container.row_activated.connect ((row) => {
+ var file_item = row as FileItem;
+ if (file_item == null) {
+ return;
+ }
+
+ handle_item_selection (file_item);
+ });
+
+ search_term_entry_key_controller = new Gtk.EventControllerKey (search_term_entry);
+ search_term_entry_key_controller.key_pressed.connect ((keyval, keycode, state) => {
+ switch (keyval) {
+ // Handle seperately, otherwise it takes 2 escape hits to close the modal
+ case Gdk.Key.Escape:
+ close_search ();
+ return Gdk.EVENT_STOP;
+ default:
+ break;
+ }
+
+ return Gdk.EVENT_PROPAGATE;
+ });
+
+ search_term_entry.activate.connect (() => {
+ if (search_list_store.n_items > 0) {
+ handle_item_selection ((FileItem) search_list_store.get_item (preselected_index));
+ }
+ });
+
+ search_term_entry.changed.connect ((e) => {
+ if (search_term_entry.text.length >= 1) {
+ var previous_text = search_term_entry.text;
+ if (cancellables.size > 0) {
+ var last_cancellable = cancellables.last ();
+ last_cancellable.cancel ();
+ }
+
+ Timeout.add (1, () => {
+ // If the entry is empty or the text has changed
+ // since searching, do nothing
+ if (previous_text.length == 0 || previous_text != search_term_entry.text) {
+ return Source.REMOVE;
+ }
+
+ var next_cancellable = new GLib.Cancellable ();
+ cancellables.add (next_cancellable);
+
+ var dir_length = 0, term = search_term_entry.text;
+ var parts = term.split (Path.DIR_SEPARATOR_S, 0);
+ var rev_parts = term.reverse ().split (Path.DIR_SEPARATOR_S, 2);
+ if (rev_parts.length == 2) {
+ dir_length = rev_parts[0].length + 1;
+ }
+
+ fuzzy_finder.fuzzy_find_async.begin (
+ term,
+ dir_length,
+ current_doc_project,
+ next_cancellable,
+ (obj, res) => {
+ if (next_cancellable.is_cancelled ()) {
+ cancellables.remove (next_cancellable);
+ return;
+ }
+
+ var results = fuzzy_finder.fuzzy_find_async.end (res);
+ if (results == null) {
+ return;
+ }
+
+ bool first = true;
+
+ search_list_store.remove_all ();
+
+ foreach (var result in results) {
+ var file_item = new FileItem (result, indexer.project_paths.size > 1);
+
+ if (first) {
+ first = false;
+ preselected_index = 0;
+ }
+
+ search_list_store.insert_sorted (file_item, sort_func);
+ }
+
+ scrolled.hide ();
+ scrolled.show_all ();
+
+ // Reset scrolling
+ scrolled.vadjustment.value = 0;
+ }
+ );
+
+ return Source.REMOVE;
+ });
+ } else {
+ search_list_store.remove_all ();
+
+ scrolled.hide ();
+ }
+ });
+
+ search_term_entry.realize.connect_after (() => {
+ int height;
+ current_window.get_size (null, out height);
+
+ // Limit the shown results if the window height is too small
+ if (height > 400) {
+ max_items = height / 80;
+ } else {
+ max_items = 3;
+ }
+
+ scrolled.set_max_content_height (45 /* height */ * max_items);
+
+ current_doc_project = get_current_project (); // This will not change while popover is showing
+ });
+
+ search_result_container.move_cursor.connect (move_cursor);
+ search_result_container.move_cursor.connect_after (move_cursor_after);
+ }
+
+ private int sort_func (Object a, Object b) {
+ var result_a = ((FileItem)a).result;
+ var result_b = ((FileItem)b).result;
+ var project_a_is_current = result_a.project == current_doc_project;
+ var project_b_is_current = result_b.project == current_doc_project;
+ if (project_a_is_current && !project_b_is_current) {
+ return 1;
+ } else if (project_b_is_current && !project_a_is_current) {
+ return -1;
+ } else if (result_a.score > result_b.score) {
+ return -1;
+ } else if (result_b.score > result_a.score) {
+ return 1;
+ } else {
+ return strcmp (((FileItem)a).result.full_path, ((FileItem)b).result.full_path);
+ }
+ }
+
+ /* focus_child not selected_row because selected_row sometimes lags behind focus
+ * wrap in connect_after otherwise cursor will move after refocus
+ */
+ private bool wrap_cursor = false;
+ private void move_cursor (Gtk.ListBox list_box, Gtk.MovementStep step, int count) requires (step == DISPLAY_LINES) {
+ // Move up to the searchbar
+ if (list_box.get_focus_child () == list_box.get_row_at_index (0) && count == -1) {
+ move_focus (TAB_BACKWARD);
+ return;
+ }
+
+ if (list_box.get_focus_child () == list_box.get_row_at_index ((int) search_list_store.n_items - 1) && count == 1) {
+ wrap_cursor = true;
+ }
+ }
+
+ private void move_cursor_after (Gtk.ListBox list_box, Gtk.MovementStep step, int count) {
+ if (!wrap_cursor) {
+ return;
+ }
+
+ list_box.get_row_at_index (0).grab_focus ();
+ wrap_cursor = false;
+ }
+
+ private void handle_item_selection (FileItem item) {
+ open_file (item.filepath.strip ());
+ }
+
+ private string get_current_project () {
+ Scratch.Services.Document current_document = current_window.document_view.current_document;
+ if (current_document == null) {
+ return "";
+ }
+
+ if (current_document.is_file_temporary) {
+ return "";
+ }
+
+ string file_path = current_document.file.get_path ();
+
+ var iter = indexer.project_paths.keys.iterator ();
+ while (iter.next ()) {
+ string project_path = iter.get ();
+ if (file_path.has_prefix (project_path)) {
+ return project_path;
+ }
+ }
+
+ return "";
+ }
+ }
diff --git a/plugins/fuzzy-search/fuzzy-search-project.vala b/plugins/FuzzySearch/FuzzySearchProject.vala
similarity index 100%
rename from plugins/fuzzy-search/fuzzy-search-project.vala
rename to plugins/FuzzySearch/FuzzySearchProject.vala
diff --git a/plugins/fuzzy-search/search-result.vala b/plugins/FuzzySearch/SearchResult.vala
similarity index 100%
rename from plugins/fuzzy-search/search-result.vala
rename to plugins/FuzzySearch/SearchResult.vala
diff --git a/plugins/fuzzy-search/fuzzy-search.plugin b/plugins/FuzzySearch/fuzzy-search.plugin
similarity index 100%
rename from plugins/fuzzy-search/fuzzy-search.plugin
rename to plugins/FuzzySearch/fuzzy-search.plugin
diff --git a/plugins/fuzzy-search/meson.build b/plugins/FuzzySearch/meson.build
similarity index 78%
rename from plugins/fuzzy-search/meson.build
rename to plugins/FuzzySearch/meson.build
index 94a6622c59..65fc2ea7e5 100644
--- a/plugins/fuzzy-search/meson.build
+++ b/plugins/FuzzySearch/meson.build
@@ -1,13 +1,13 @@
module_name = 'fuzzy-search'
module_files = [
- 'file-item.vala',
- 'fuzzy-search.vala',
- 'fuzzy-finder.vala',
- 'fuzzy-search-indexer.vala',
- 'fuzzy-search-popover.vala',
- 'fuzzy-search-project.vala',
- 'search-result.vala',
+ 'FileItem.vala',
+ 'FuzzySearch.vala',
+ 'FuzzyFinder.vala',
+ 'FuzzySearchIndexer.vala',
+ 'FuzzySearchPopover.vala',
+ 'FuzzySearchProject.vala',
+ 'SearchResult.vala',
]
module_deps = [
diff --git a/plugins/fuzzy-search/fuzzy-search-popover.vala b/plugins/fuzzy-search/fuzzy-search-popover.vala
deleted file mode 100644
index 37a3132161..0000000000
--- a/plugins/fuzzy-search/fuzzy-search-popover.vala
+++ /dev/null
@@ -1,320 +0,0 @@
-/*
- * SPDX-License-Identifier: GPL-3.0-or-later
- * SPDX-FileCopyrightText: 2023-2026 elementary, Inc.
- *
- * Authored by: Marvin Ahlgrimm
- * Colin Kiama
- */
-
-public class Scratch.FuzzySearchPopover : Gtk.Popover {
- public signal void open_file (string filepath);
- public signal void close_search ();
-
- public Scratch.MainWindow current_window { get; construct; }
- public Scratch.Services.FuzzySearchIndexer search_indexer { get; construct; }
- public bool sidebar_is_visible { get; set; }
-
- private Gtk.SearchEntry search_term_entry;
- private Services.FuzzyFinder fuzzy_finder;
- private Gtk.ListBox search_result_container;
- private int preselected_index;
- private Gtk.ScrolledWindow scrolled;
- private Gee.ArrayList items;
- private Scratch.Services.FuzzySearchIndexer indexer;
- private int window_height;
- private int max_items;
- private Gee.LinkedList cancellables;
- private Gtk.EventControllerKey search_term_entry_key_controller;
- private Gtk.Label title_label;
- private string current_doc_project;
-
- public FuzzySearchPopover (Scratch.Services.FuzzySearchIndexer search_indexer, Scratch.MainWindow window) {
- Object (
- current_window: window,
- search_indexer: search_indexer
- );
- }
-
- construct {
- modal = true;
- relative_to = current_window.document_view;
- width_request = 500;
- pointing_to = { 0, 32, 1, 1 };
- get_style_context ().add_class ("fuzzy-popover");
-
- title_label = new Granite.HeaderLabel (_("Find project files"));
-
- search_term_entry = new Gtk.SearchEntry () {
- hexpand = true,
- valign = START
- };
-
- search_result_container = new Gtk.ListBox () {
- selection_mode = NONE,
- activate_on_single_click = true,
- can_focus = false
- };
- search_result_container.get_style_context ().add_class ("fuzzy-list");
-
- var entry_layout = new Gtk.Box (VERTICAL, 0) {
- valign = START
- };
- entry_layout.add (title_label);
- entry_layout.add (search_term_entry);
-
- scrolled = new Gtk.ScrolledWindow (null, null) {
- propagate_natural_height = true,
- hexpand = true,
- vexpand = true,
- child = search_result_container
- };
-
- var box = new Gtk.Box (VERTICAL, 0);
- box.add (entry_layout);
- box.add (scrolled);
- box.show_all ();
-
- scrolled.hide ();
-
- add (box);
-
- fuzzy_finder = new Services.FuzzyFinder (search_indexer.project_paths);
- indexer = search_indexer;
- items = new Gee.ArrayList ();
- cancellables = new Gee.LinkedList ();
-
- search_result_container.row_activated.connect ((row) => {
- var file_item = row as FileItem;
- if (file_item == null) {
- return;
- }
-
- handle_item_selection (items.index_of (file_item));
- });
-
- search_term_entry_key_controller = new Gtk.EventControllerKey (search_term_entry);
- search_term_entry_key_controller.key_pressed.connect ((keyval, keycode, state) => {
- // Handle key up/down to select other files found by fuzzy search
- switch (keyval) {
- case Gdk.Key.Down:
- if (items.size > 0) {
- var old_index = preselected_index;
- var item = items.get (preselected_index++);
- if (preselected_index >= items.size) {
- preselected_index = 0;
- }
-
- var next_item = items.get (preselected_index);
- preselect_new_item (item, next_item);
- calculate_scroll_offset (old_index, preselected_index);
- }
-
- return true;
- case Gdk.Key.Up:
- if (items.size > 0) {
- var old_index = preselected_index;
- var item = items.get (preselected_index--);
- if (preselected_index < 0) {
- preselected_index = items.size - 1;
- }
-
- var next_item = items.get (preselected_index);
- preselect_new_item (item, next_item);
- calculate_scroll_offset (old_index, preselected_index);
- }
- return true;
- case Gdk.Key.Escape:
- // Handle seperately, otherwise it takes 2 escape hits to close the modal
- close_search ();
- return true;
- default:
- break;
- }
-
- return false;
- });
-
- search_term_entry.activate.connect (() => {
- if (items.size > 0) {
- handle_item_selection (preselected_index);
- }
- });
-
- search_term_entry.changed.connect ((e) => {
- if (search_term_entry.text.length >= 1) {
- var previous_text = search_term_entry.text;
- if (cancellables.size > 0) {
- var last_cancellable = cancellables.last ();
- last_cancellable.cancel ();
- }
-
- Timeout.add (1, () => {
- // If the entry is empty or the text has changed
- // since searching, do nothing
- if (previous_text.length == 0 || previous_text != search_term_entry.text) {
- return Source.REMOVE;
- }
-
- var next_cancellable = new GLib.Cancellable ();
- cancellables.add (next_cancellable);
-
- var dir_length = 0, term = search_term_entry.text;
- var parts = term.split (Path.DIR_SEPARATOR_S, 0);
- var rev_parts = term.reverse ().split (Path.DIR_SEPARATOR_S, 2);
- if (rev_parts.length == 2) {
- dir_length = rev_parts[0].length + 1;
- }
-
- fuzzy_finder.fuzzy_find_async.begin (term, dir_length,
- current_doc_project,
- next_cancellable,
- (obj, res) => {
- if (next_cancellable.is_cancelled ()) {
- cancellables.remove (next_cancellable);
- return;
- }
-
- var results = fuzzy_finder.fuzzy_find_async.end (res);
- if (results == null) {
- return;
- }
-
- bool first = true;
-
-
-
- foreach (var c in search_result_container.get_children ()) {
- search_result_container.remove (c);
- }
-
- items.clear ();
-
- foreach (var result in results) {
- var file_item = new FileItem (result, indexer.project_paths.size > 1);
- file_item.can_focus = false;
-
- if (first) {
- first = false;
- file_item.get_style_context ().add_class ("preselect-fuzzy");
- preselected_index = 0;
- }
-
- search_result_container.add (file_item);
- items.add (file_item);
- }
-
- scrolled.hide ();
- scrolled.show_all ();
-
- // Reset scrolling
- scrolled.vadjustment.value = 0;
- });
-
- return Source.REMOVE;
- });
- } else {
- foreach (var c in search_result_container.get_children ()) {
- search_result_container.remove (c);
- }
-
- items.clear ();
- scrolled.hide ();
- }
- });
-
- search_term_entry.realize.connect_after (() => {
- int height;
- current_window.get_size (null, out height);
-
- // Limit the shown results if the window height is too small
- if (height > 400) {
- max_items = height / 80;
- } else {
- max_items = 3;
- }
-
- scrolled.set_max_content_height (45 /* height */ * max_items);
-
- current_doc_project = get_current_project (); // This will not change while popover is showing
- search_result_container.set_sort_func ((a , b) => {
- var result_a = ((FileItem)a).result;
- var result_b = ((FileItem)b).result;
- var project_a_is_current = result_a.project == current_doc_project;
- var project_b_is_current = result_b.project == current_doc_project;
- if (project_a_is_current && !project_b_is_current) {
- return 1;
- } else if (project_b_is_current && !project_a_is_current) {
- return -1;
- } else if (result_a.score > result_b.score) {
- return -1;
- } else if (result_b.score > result_a.score) {
- return 1;
- } else {
- return strcmp (((FileItem)a).result.full_path, ((FileItem)b).result.full_path);
- }
- });
- });
- }
-
- private void calculate_scroll_offset (int old_position, int new_position) {
- // Shortcut if jumping from first to last or the other way round
- if (new_position == 0 && old_position > new_position) {
- scrolled.vadjustment.value = 0;
- return;
- } else if (old_position == 0 && new_position == items.size - 1) {
- scrolled.vadjustment.value = scrolled.vadjustment.get_upper ();
- return;
- }
-
- var size_box = scrolled.vadjustment.get_upper () / items.size;
- var current_top = scrolled.vadjustment.value;
- var current_bottom = current_top + size_box * (max_items - 2);
- if (old_position < new_position) {
- // Down movement
- var new_adjust = size_box * (preselected_index);
- if (new_adjust >= current_bottom) {
- scrolled.vadjustment.value = size_box * (preselected_index - (max_items - 1));
- }
- } else if (old_position > new_position) {
- // Up movement
- var new_adjust = size_box * (preselected_index);
- if (new_adjust < current_top) {
- scrolled.vadjustment.value = new_adjust;
- }
- }
- }
-
- private void handle_item_selection (int index) {
- var item = items.get (index);
- open_file (item.filepath.strip ());
- }
-
- private void preselect_new_item (FileItem old_item, FileItem new_item) {
- var class_name = "preselect-fuzzy";
- old_item.get_style_context ().remove_class (class_name);
- new_item.get_style_context ().add_class (class_name);
- }
-
- private string get_current_project () {
- Scratch.Services.Document current_document = current_window.document_view.current_document;
- if (current_document == null) {
- return "";
- }
-
- if (current_document.is_file_temporary) {
- return "";
- }
-
- string file_path = current_document.file.get_path ();
-
- var iter = indexer.project_paths.keys.iterator ();
- while (iter.next ()) {
- string project_path = iter.get ();
- if (file_path.has_prefix (project_path)) {
- return project_path;
- }
- }
-
- return "";
- }
- }
diff --git a/plugins/meson.build b/plugins/meson.build
index 906dcd0780..3b3ecdea6f 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -10,4 +10,4 @@ subdir('preserve-indent')
subdir('spell')
subdir('vim-emulation')
subdir('word-completion')
-subdir('fuzzy-search')
+subdir('FuzzySearch')
diff --git a/plugins/pastebin/pastebin_dialog.vala b/plugins/pastebin/pastebin_dialog.vala
index ee83e34d15..7322365d33 100644
--- a/plugins/pastebin/pastebin_dialog.vala
+++ b/plugins/pastebin/pastebin_dialog.vala
@@ -451,11 +451,17 @@ namespace Scratch.Dialogs {
if (submit_result) {
//paste successfully
- var link_button = new Gtk.LinkButton (link);
- box.pack_start (link_button, false, true, 25);
+ var link_button = new Gtk.LinkButton (link) {
+ margin_start = 25,
+ margin_end = 25,
+ hexpand = false
+ };
+ box.add (link_button);
} else {
- var err_label = new Gtk.Label (link);
- box.pack_start (err_label, false, true, 0);
+ var err_label = new Gtk.Label (link) {
+ hexpand = false
+ };
+ box.add (err_label);
}
box.show_all ();
diff --git a/po/aa.po b/po/aa.po
index 4a8944dc95..ff97798f4f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ab.po b/po/ab.po
index 4a8944dc95..ff97798f4f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ae.po b/po/ae.po
index eac5d48184..f7afcbada4 100644
--- a/po/ae.po
+++ b/po/ae.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -29,71 +29,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -101,29 +101,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -811,50 +811,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/af.po b/po/af.po
index db9f817e2d..161bb7eedb 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2017-04-09 21:07+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Afrikaans \n"
@@ -42,73 +42,73 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Find…"
msgid "Find on Page…"
msgstr "Vind…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Steek terminaal weg"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Wys terminaal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Alle lêers"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Teks lêers"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr ""
msgid "Cancel"
msgstr "Kanselleer"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -869,55 +869,55 @@ msgstr "Nuwe Venster"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Automatiese inkeping"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Inkeping Wydte"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "Wys lyn nommers"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ak.po b/po/ak.po
index 791fa38c65..4af6bb8ec0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2017-04-09 20:11+0000\n"
"Last-Translator: aberba \n"
"Language-Team: LANGUAGE \n"
@@ -37,73 +37,73 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "Bue file"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
msgid "Hide Projects Sidebar"
msgstr "Bue file"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -111,29 +111,29 @@ msgstr ""
msgid "Cancel"
msgstr "Gyae"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -861,50 +861,50 @@ msgstr "Window Foforɔ"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Kɔ line:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/am.po b/po/am.po
index 62b79f56bd..c87ccc6d2f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:39+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Amharic \n"
@@ -42,79 +42,79 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "የመፈለጊያ ባሩን መደበቂያ"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "ፎልደር መክፈቻ"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "የመፈለጊያ ባሩን መደበቂያ"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "የ እቅድ ቴምፕሌቶች"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "ምልክቶች"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "የጽሁፍ ፋይሎች"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "አንዳንድ ፋይሎች መክፈቻ"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "መክፈቻ"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -122,29 +122,29 @@ msgstr "መክፈቻ"
msgid "Cancel"
msgstr "መሰረዣ"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_መክፈቻ"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_መሰረዣ"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -889,55 +889,55 @@ msgstr "አዲስ መስኮት"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "ራሱ በራሱ ማስረጊያ:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "የ ንዑስ መስኮት ስፋት:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "ወደ መስመር መሄጃ :"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "የ መስመር ቁጥር ማሳያ:"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/an.po b/po/an.po
index ed79b4e2d0..4de676cf06 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:36+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -822,50 +822,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ar.po b/po/ar.po
index e8ae9c10b5..696ea7edcf 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2021-09-06 18:12+0000\n"
"Last-Translator: aalhaif \n"
"Language-Team: Arabic \n"
@@ -44,80 +44,80 @@ msgstr ""
msgid "[FILE…]"
msgstr "[ملف...]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "كود"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "كود"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "إخفاء شريط البحث"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open project folder…"
msgid "Find on Page…"
msgstr "فتح مجلد المشروع…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "إخفاء شريط البحث"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "اظهر المعاينة"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "ازالة الاماكن الوهمية المنشأة من قبل ( vala parser )"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "اخفي الطرفية"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "اظهر الطرفية"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "كل الملفات"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "ملفات نصية"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "فتح بعض الملفات"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "إفتح"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -125,29 +125,29 @@ msgstr "إفتح"
msgid "Cancel"
msgstr "الغاء"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_فتح"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_الغاء"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -946,51 +946,51 @@ msgstr "نافذة جديدة"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "التعرف التلقائي على المسافات الفارغة:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "ادخل مسافات بدلا من tabs:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "عرض التبويب:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "ترشيح اللغات"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "نص بسيط"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "ترشيح اللغات"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "إذهب الى السطر :"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "إعرض رقم السطر"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
@@ -1001,7 +1001,7 @@ msgstr[3] "%d مسافات"
msgstr[4] "%d مسافات"
msgstr[5] "%d مسافات"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/as.po b/po/as.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ast.po b/po/ast.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/av.po b/po/av.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ay.po b/po/ay.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/az.po b/po/az.po
index fd82ab2ca8..ebbadbba7f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/be.po b/po/be.po
index 4c24ca97e9..9a4e19bd2c 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2025-12-04 09:55+0000\n"
"Last-Translator: lenify \n"
"Language-Team: Belarusian "
msgid "[FILE…]"
msgstr "[ФАЙЛ…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Код (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Схаваць поле пошуку"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Знайсці на старонцы…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Схаваць панэль праектаў"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Паказаць панэль праектаў"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Схаваць абводку сімвалаў"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Паказаць абводку сімвалаў"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Схаваць Тэрмінал"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Паказаць Тэрмінал"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Усе файлы"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Тэкставыя файлы"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Адкрыць некалькі файлаў"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Адкрыць"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -112,29 +112,29 @@ msgstr "Адкрыць"
msgid "Cancel"
msgstr "Скасаваць"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Адкрыць"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Скасаваць"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Кланіраванне завершана"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Клон створаны ў %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "Не атрымалася кланіраваць %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Паспрабаваць зноў"
@@ -847,43 +847,43 @@ msgstr "Адкрыць у новым акне"
msgid "Duplicate Tab"
msgstr "Дубліраваць укладку"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Некаторыя налады былі ўзятыя з файла EditorConfig"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Аўтаматычныя выступы"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Устаўляць прабелы замест табуляцый"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Шырыня табуляцыі"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Фільтраваць мовы"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Звычайны тэкст"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "Мовы дакумента"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Перайсці да радку:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Нумары радкоў"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
@@ -891,7 +891,7 @@ msgstr[0] "%d прабел"
msgstr[1] "%d прабелы"
msgstr[2] "%d прабелаў"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bg.po b/po/bg.po
index 4279b66ae5..d46332b45e 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-09-10 14:54+0000\n"
"Last-Translator: Cleiton Floss \n"
"Language-Team: Bulgarian \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bi.po b/po/bi.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bm.po b/po/bm.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bn.po b/po/bn.po
index 6916311873..91813e12d5 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2017-01-21 09:06+0000\n"
"Last-Translator: Hasan Sumon \n"
"Language-Team: LANGUAGE \n"
@@ -37,79 +37,79 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "অনুসন্ধান বার লুকিয়ে রাখুন"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "একটি ফোল্ডার খুলুন"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "অনুসন্ধান বার লুকিয়ে রাখুন"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "প্রিভিউ দেখান"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "চিহ্নসমূহ"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "টার্মিনাল লুকিয়ে রাখুন"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "টার্মিনাল দেখান"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "সব ফাইল"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "টেক্সট ফাইলসমূহ"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "কিছু ফাইল খুলুন"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "খুলুন"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -117,29 +117,29 @@ msgstr "খুলুন"
msgid "Cancel"
msgstr "বাতিল করুন"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_খুলুন"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_বাতিল"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -912,57 +912,57 @@ msgstr "নতুন উইন্ডো"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "স্বয়ংক্রিয় ইনডেন্টেশানঃ"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "ট্যাব এর বদলে স্পেস ব্যবহার করুনঃ"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "ট্যাব এর প্রস্থঃ"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "লাইন এ যানঃ"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "লাইন নাম্বার দেখানঃ"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, fuzzy, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "ফাঁকা স্থান বসানঃ"
msgstr[1] "ফাঁকা স্থান বসানঃ"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bo.po b/po/bo.po
index 720e1461be..15debcc17e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-08-29 15:22+0000\n"
"Last-Translator: གངས་རྒྱན། \n"
"Language-Team: Tibetan \n"
@@ -38,72 +38,72 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -111,29 +111,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -815,50 +815,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/br.po b/po/br.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/bs.po b/po/bs.po
index fe8a77706a..f769bde886 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-11-05 00:09+0000\n"
"Last-Translator: Elvis Mujanović \n"
"Language-Team: Bosnian \n"
"Language-Team: Catalan "
msgid "[FILE…]"
msgstr "[FITXER…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Codi (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Codi"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Amaga la barra de cerca"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Troba a la pàgina…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Amaga la barra lateral de projectes"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Mostra la barra lateral de projectes"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Amaga el contorn del símbol"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Mostra el contorn del símbol"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Amaga el terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Mostra el terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Tots els fitxers"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Fitxers de text"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Obriu alguns fitxers"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Obre"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Obre"
msgid "Cancel"
msgstr "Cancel·la"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Obre"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Cancel·la"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Clonació completada"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Clon creat correctament a %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "No s'ha pogut clonar %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Torna-ho a provar"
@@ -847,50 +847,50 @@ msgstr "Obre-ho en una finestra nova"
msgid "Duplicate Tab"
msgstr "Duplica la pestanya"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Alguns paràmetres establerts pel fitxer EditorConfig"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Sagnat automàtic"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Insereix espais en comptes de tabulacions"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Amplada de la tabulació"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtra llenguatges"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Text pla"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "Llengua del document"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Ves a la línia:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Número de línia"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d espai"
msgstr[1] "%d espais"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
index 4b430a529a..3a827a9e57 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -822,50 +822,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ch.po b/po/ch.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ckb.po b/po/ckb.po
index 60e02aa6fe..8c10c34f37 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/cr.po b/po/cr.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/cs.po b/po/cs.po
index a16d5673c9..da0be70c05 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2023-07-19 08:07+0000\n"
"Last-Translator: Jakub Kyzr \n"
"Language-Team: Czech \n"
@@ -43,71 +43,71 @@ msgstr ""
msgid "[FILE…]"
msgstr "[SOUBOR…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Skrýt vyhledávací panel"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Najít na stránce…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Skrýt panel projektů"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Zobrazit panel projektů"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Skrýt přehled symbolů"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Zobrazit přehled symbolů"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Skrýt terminál"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Zobrazit terminál"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Všechny soubory"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Textové soubory"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Otevřít nějaké soubory"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Otevřít"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -115,29 +115,29 @@ msgstr "Otevřít"
msgid "Cancel"
msgstr "Zrušit"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Otevřít"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Zrušit"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -895,45 +895,45 @@ msgstr "Nové okno"
msgid "Duplicate Tab"
msgstr "Uložit kopii…"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Nějaká nastavení jsou nastavena souborem EditorConfig"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Automatické odsazování"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Vkládat mezery místo tabulátorů"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Šířka tabulátoru"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtrovat jazyky"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Prostý text"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Filtrovat jazyky"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Přejít na řádek:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Číslo řádku"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
@@ -941,7 +941,7 @@ msgstr[0] "%d mezera"
msgstr[1] "%d mezery"
msgstr[2] "%d mezer"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/cu.po b/po/cu.po
index eac5d48184..f7afcbada4 100644
--- a/po/cu.po
+++ b/po/cu.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -29,71 +29,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -101,29 +101,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -811,50 +811,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/cv.po b/po/cv.po
index cf29aab95b..eed502789b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:37+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr "вăйран кăлар"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -836,50 +836,50 @@ msgstr "Çĕнĕ чÿрече"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/cy.po b/po/cy.po
index dea8c30ef5..299ad781ed 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/da.po b/po/da.po
index 33f7287d7d..000cd9e2a0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-05-30 10:11+0000\n"
"Last-Translator: Rantyrant \n"
"Language-Team: Danish \n"
@@ -43,80 +43,80 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Skjul søgelinjen"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open project folder…"
msgid "Find on Page…"
msgstr "Åbn projekt mappe…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Skjul søgelinjen"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Vis forhåndsvisning"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "Ingen Symboler Fundet"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Skjul terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Vis terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Alle filer"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Tekstfiler"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Åbn nogle filer"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Åbn"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -124,29 +124,29 @@ msgstr "Åbn"
msgid "Cancel"
msgstr "Annuller"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Åbn"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Annuller"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -930,58 +930,58 @@ msgstr "Nyt Vindue"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Automatisk indrykning:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Indsæt mellemrum i stedet for tab:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Tab bredde:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtrér sprog"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Simpel Tekst"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Filtrér sprog"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Gå til linje:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Linjenummer"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d Mellemrum"
msgstr[1] "%d Mellemrum"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/de.po b/po/de.po
index 8e92233c65..ef0f9ce3fc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2025-04-11 19:55+0000\n"
"Last-Translator: Uwe S \n"
"Language-Team: German "
msgid "[FILE…]"
msgstr "[DATEI…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Suchleiste ausblenden"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Auf Seite suchen …"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Projektleiste ausblenden"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Projektleiste anzeigen"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Gliederungsymbole ausblenden"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Gliederungsymbole anzeigen"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Terminal ausblenden"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Terminal anzeigen"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s – %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Alle Dateien"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Textdateien"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Datei öffnen"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Öffnen"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Öffnen"
msgid "Cancel"
msgstr "Abbrechen"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Öffnen"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Abbrechen"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -871,52 +871,52 @@ msgstr "In neuem Fenster öffnen"
msgid "Duplicate Tab"
msgstr "Tab duplizieren"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Einige Einstellungen durch EditorConfig-Datei vorgenommen"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Automatisch einrücken"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Leerzeichen anstelle von Tabulatoren einfügen"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Tabulatorbreite"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Sprachen filtern"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Einfacher Text"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Sprachen filtern"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Zur Zeile gehen:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Zeilennummer"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d Leerzeichen"
msgstr[1] "%d Leerzeichen"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/dv.po b/po/dv.po
index 35eff586ed..36446f697f 100644
--- a/po/dv.po
+++ b/po/dv.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/dz.po b/po/dz.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ee.po b/po/ee.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/el.po b/po/el.po
index 7f8ce8c2db..b32da980ea 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
-"PO-Revision-Date: 2026-07-10 12:01+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
+"PO-Revision-Date: 2026-07-25 20:01+0000\n"
"Last-Translator: Jim Spentzos \n"
"Language-Team: Greek \n"
"Language: el\n"
@@ -43,77 +43,77 @@ msgstr ""
msgid "[FILE…]"
msgstr "[ΑΡΧΕΙΟ…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Κώδικας (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Κώδικας"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Απόκρυψη γραμμής αναζήτησης"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Εύρεση στη σελίδα…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Απόκρυψη γραμμής αναζήτησης"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Εμφάνιση προεπισκόπησης"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Σύμβολα"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Απόκρυψη τερματικού"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Προβολή τερματικού"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
-msgstr ""
+msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Όλα τα αρχεία"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Αρχεία κειμένου"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Άνοιγμα μερικών αρχείων"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Άνοιγμα"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -121,29 +121,29 @@ msgstr "Άνοιγμα"
msgid "Cancel"
msgstr "Ακύρωση"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "Άν_οιγμα"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Ακύρωση"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Η κλωνοποίηση ολοκληρώθηκε"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Επανάληψη"
@@ -190,11 +190,11 @@ msgstr "Τοποθεσία"
#: src/Dialogs/CloneRepositoryDialog.vala:120
msgid "Name of Clone"
-msgstr ""
+msgstr "Όνομα κλώνου"
#: src/Dialogs/CloneRepositoryDialog.vala:122
msgid "Cloning in progress"
-msgstr ""
+msgstr "Κλωνοποίηση σε εξέλιξη"
#: src/Dialogs/GlobalSearchDialog.vala:63
msgid "The search term will be treated as a regex expression"
@@ -266,10 +266,8 @@ msgid "Indentation width"
msgstr "Μήκος περιθωρίου:"
#: src/Dialogs/PreferencesDialog.vala:51
-#, fuzzy
-#| msgid "Automatic indentation:"
msgid "Indentation"
-msgstr "Αυτόματη εσοχή:"
+msgstr "Εσοχή"
#: src/Dialogs/PreferencesDialog.vala:52
#, fuzzy
@@ -296,10 +294,8 @@ msgid "None"
msgstr ""
#: src/Dialogs/PreferencesDialog.vala:84
-#, fuzzy
-#| msgid "Remove Current View"
msgid "Current Line"
-msgstr "Αφαίρεση Τρέχουσας Προβολής"
+msgstr "Τρέχουσα γραμμή"
#: src/Dialogs/PreferencesDialog.vala:85
msgid "All"
@@ -341,7 +337,7 @@ msgstr "Οδηγός πλάτους γραμμής"
#: src/Dialogs/PreferencesDialog.vala:128
#, c-format
msgid "Use system font (%s)"
-msgstr ""
+msgstr "Χρήση γραμματοσειράς συστήματος (%s)"
#: src/Dialogs/PreferencesDialog.vala:138
msgid "Font"
@@ -374,11 +370,11 @@ msgstr ""
#: src/Dialogs/RestoreConfirmationDialog.vala:35
msgid "Don't Restore"
-msgstr ""
+msgstr "Χωρίς ανάκτηση"
#: src/Dialogs/RestoreConfirmationDialog.vala:37
msgid "Restore Anyway"
-msgstr ""
+msgstr "Ανάκτηση ούτως ή άλλως"
#: src/Dialogs/CloseProjectsConfirmationDialog.vala:41
msgid "This folder is the parent of an open project"
@@ -408,7 +404,7 @@ msgstr ""
#: src/Dialogs/CloseProjectsConfirmationDialog.vala:60
msgid "Close Parent Project"
-msgstr ""
+msgstr "Κλείσιμο γονικού έργου"
#: src/Dialogs/CloseProjectsConfirmationDialog.vala:63
msgid "Don't Open"
@@ -454,9 +450,8 @@ msgid "Other Application…"
msgstr "Άλλη εφαρμογή…"
#: src/FolderManager/FileItem.vala:113 src/FolderManager/FolderItem.vala:206
-#, fuzzy
msgid "Open In"
-msgstr "Άνοιγμα"
+msgstr "Άνοιγμα σε"
#: src/FolderManager/FileView.vala:72
msgid "Folders"
@@ -510,7 +505,7 @@ msgstr "Ορισμός ως ενεργό έργο"
#: src/FolderManager/ProjectFolderItem.vala:143
msgid "Open in Terminal Pane"
-msgstr ""
+msgstr "Άνοιγμα στην προβολή τερματικού"
#: src/FolderManager/ProjectFolderItem.vala:171
msgid "Branch Actions…"
@@ -642,10 +637,8 @@ msgstr ""
#. Lack of read permission results in empty content string. Do not give option to open
#. in new document in that case.
#: src/Services/Document.vala:947
-#, fuzzy
-#| msgid "Load Anyway"
msgid "Show Anyway"
-msgstr "Φόρτωσέ το"
+msgstr "Εμφάνιση ούτως ή άλλως"
#: src/Services/Document.vala:978
#, fuzzy, c-format
@@ -716,20 +709,16 @@ msgid "Continue"
msgstr "Συνέχεια"
#: src/Services/Document.vala:1132
-#, fuzzy
-#| msgid "Upload"
msgid "Reload"
-msgstr "Μεταφόρτωση"
+msgstr "Επαναφόρτωση"
#: src/Services/Document.vala:1135
msgid "Overwrite"
-msgstr ""
+msgstr "Αντικατάσταση"
#: src/Services/Document.vala:1138
-#, fuzzy
-#| msgid "Save the current file"
msgid "Save Document elsewhere"
-msgstr "Αποθήκευση τρέχοντος αρχείου"
+msgstr "Αποθήκευση εγγράφου αλλού"
#: src/Services/MonitoredRepository.vala:254
#, c-format
@@ -776,19 +765,19 @@ msgstr ""
#: src/SymbolPane/SymbolOutline.vala:35
msgid "Class"
-msgstr ""
+msgstr "Κλάση"
#: src/SymbolPane/SymbolOutline.vala:37
msgid "Property"
-msgstr ""
+msgstr "Ιδιότητα"
#: src/SymbolPane/SymbolOutline.vala:39
msgid "Signal"
-msgstr ""
+msgstr "Σήμα"
#: src/SymbolPane/SymbolOutline.vala:41
msgid "Method"
-msgstr ""
+msgstr "Μέθοδος"
#: src/SymbolPane/SymbolOutline.vala:43
msgid "Struct"
@@ -851,7 +840,7 @@ msgstr "Άνοιγμα φακέλου…"
#: src/Widgets/ChooseProjectButton.vala:75
msgid "Clone Git Repository…"
-msgstr ""
+msgstr "Κλωνοποίηση αποθετηρίου Git…"
#: src/Widgets/DocumentView.vala:110
#, fuzzy
@@ -888,64 +877,61 @@ msgstr "Νέο Παράθυρο"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
-#, fuzzy
-#| msgid "Automatic indentation:"
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
-msgstr "Αυτόματη εσοχή:"
+msgstr "Αυτόματη εσοχή"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Εισαγωγή κενών αντί για καρτέλες:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Πλάτος καρτέλας:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Φιλτράρετε τις γλώσσες"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Απλό κείμενο"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Φιλτράρετε τις γλώσσες"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Μετάβαση στη γραμμή:"
-#: src/Widgets/FormatBar.vala:175
-#, fuzzy
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
-msgstr "Εμφάνιση αριθμών γραμμών:"
+msgstr "Αριθμός γραμμής"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d Κενό"
msgstr[1] "%d Κενά"
-#: src/Widgets/FormatBar.vala:290
-#, fuzzy, c-format
+#: src/Widgets/FormatBar.vala:297
+#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
-msgstr[0] "Νέα Καρτέλα"
-msgstr[1] "Νέα Καρτέλα"
+msgstr[0] "%d καρτέλα"
+msgstr[1] "%d καρτέλες"
#: src/Widgets/HeaderBar.vala:37
msgid "Open a file"
@@ -968,9 +954,8 @@ msgid "Share"
msgstr "Κοινή χρήση"
#: src/Widgets/HeaderBar.vala:79
-#, fuzzy
msgid "Zoom Out"
-msgstr "Μεγέθυνση"
+msgstr "Σμίκρυνση"
#: src/Widgets/HeaderBar.vala:87
msgid "Zoom 1:1"
@@ -1006,7 +991,7 @@ msgstr "Η κλωνοποίηση ολοκληρώθηκε"
#: src/Widgets/Sidebar.vala:82
msgid "Collapse All"
-msgstr ""
+msgstr "Σύμπτυξη όλων"
#: src/Widgets/Sidebar.vala:91
msgid "Keep Sorted"
@@ -1050,7 +1035,7 @@ msgstr "Πάντα"
#: src/Widgets/SearchBar.vala:156
msgid "Case Sensitive"
-msgstr ""
+msgstr "Διάκριση πεζών-κεφαλαίων"
#: src/Widgets/SearchBar.vala:163
msgid "Use Regular Expressions"
@@ -1061,14 +1046,12 @@ msgid "Match Whole Words"
msgstr ""
#: src/Widgets/SearchBar.vala:186
-#, fuzzy
-#| msgid "Search previous"
msgid "Search Options"
-msgstr "Αναζήτηση προηγούμενου"
+msgstr "Επιλογές αναζήτησης"
#: src/Widgets/SearchBar.vala:223
msgid "Replace With"
-msgstr "Αντικατάσταση Με"
+msgstr "Αντικατάσταση με"
#: src/Widgets/SearchBar.vala:226
msgid "Replace"
@@ -1076,7 +1059,7 @@ msgstr "Αντικατάσταση"
#: src/Widgets/SearchBar.vala:229
msgid "Replace all"
-msgstr "Αντικατάσταση Όλων"
+msgstr "Αντικατάσταση όλων"
#: src/Widgets/SearchBar.vala:616
#, c-format
@@ -1085,31 +1068,23 @@ msgstr "%d από %d"
#: src/Widgets/SearchBar.vala:621
msgid "no results"
-msgstr ""
+msgstr "κανένα αποτέλεσμα"
#: src/Widgets/SourceView.vala:204
-#, fuzzy
-#| msgid "Remove Current View"
msgid "Sort Lines"
-msgstr "Αφαίρεση Τρέχουσας Προβολής"
+msgstr "Ταξινόμηση γραμμών"
#: src/Widgets/SourceView.vala:205
-#, fuzzy
-#| msgid "Remove Current View"
msgid "Mark Line"
-msgstr "Αφαίρεση Τρέχουσας Προβολής"
+msgstr "Σήμανση γραμμής"
#: src/Widgets/SourceView.vala:206
-#, fuzzy
-#| msgid "Previous Tab"
msgid "Previous Mark"
-msgstr "Προηγούμενη Καρτέλα"
+msgstr "Προηγούμενη σήμανση"
#: src/Widgets/SourceView.vala:207
-#, fuzzy
-#| msgid "Next Tab"
msgid "Next Mark"
-msgstr "Επόμενη Καρτέλα"
+msgstr "Επόμενη σήμανση"
#: src/Widgets/SourceView.vala:208
msgid "Toggle Comment"
@@ -1148,9 +1123,8 @@ msgid "Open a saved file."
msgstr "Άνοιγμα αποθηκευμένου αρχείου."
#: src/Widgets/WelcomeView.vala:34
-#, fuzzy
msgid "Open Folder"
-msgstr "Άνοιγμα ενός φακέλου"
+msgstr "Άνοιγμα φακέλου"
#: src/Widgets/WelcomeView.vala:34
msgid "Add a project folder to the sidebar."
@@ -1183,7 +1157,7 @@ msgstr "Διατήρηση αυτής της επικόλλησης ως ιδι
#: plugins/pastebin/pastebin_dialog.vala:358
msgid "Available Formats"
-msgstr ""
+msgstr "Διαθέσιμες μορφές"
#: plugins/pastebin/pastebin_dialog.vala:388
#, fuzzy
diff --git a/po/en_AU.po b/po/en_AU.po
index 5b1be27f5e..dcbac4d517 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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) "
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Hide search bar"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Find on Page…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Hide Projects Sidebar"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Show Projects Sidebar"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Hide Symbol Outline"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Show Symbol Outline"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Hide Terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Show Terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "All files"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Text files"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Open some files"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Open"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Open"
msgid "Cancel"
msgstr "Cancel"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Open"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Cancel"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Cloning completed"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Clone successfully created in %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "Unable to clone %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Retry"
@@ -849,52 +849,52 @@ msgstr "Open in New Window"
msgid "Duplicate Tab"
msgstr "Duplicate Tab"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Some settings set by EditorConfig file"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Automatic Indentation"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Insert Spaces Instead Of Tabs"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Tab width"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filter languages"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Plain Text"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Filter languages"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Go To Line:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Line number"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d Space"
msgstr[1] "%d Spaces"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/eo.po b/po/eo.po
index 7d2c473d23..2e2dc5d261 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-03-14 21:09+0000\n"
"Last-Translator: Shtonchjo \n"
"Language-Team: Esperanto \n"
"Language-Team: Spanish "
msgid "[FILE…]"
msgstr "[ARCHIVO…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Ocultar la barra de búsqueda"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Buscar en la página…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Ocultar la barra lateral de proyectos"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Mostrar la barra lateral de proyectos"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Ocultar la vista de esquema"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Mostrar la vista de esquema"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Ocultar terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Mostrar terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Todos los archivos"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Archivos de texto"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Abra algunos archivos"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Abrir"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Abrir"
msgid "Cancel"
msgstr "Cancelar"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Abrir"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Cancelar"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Clonación terminada"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Clon creado con éxito en %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "No se pudo clonar %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Reintentar"
@@ -848,50 +848,50 @@ msgstr "Abrir en una nueva ventana"
msgid "Duplicate Tab"
msgstr "Duplicar pestaña"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Algunas configuraciones establecidas por el archivo de EditorConfig"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Sangría automática"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Insertar espacios en lugar de tabuladores"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Ancho del tabulador"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtrar lenguajes"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Texto sin formato"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "Lenguaje del documento"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Ir a la línea:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Número de línea"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d espacio"
msgstr[1] "%d espacios"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/et.po b/po/et.po
index 553a0f2c02..9361934aa2 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2016-06-14 15:42+0000\n"
"Last-Translator: Kristjan Vool \n"
"Language-Team: Estonian \n"
@@ -42,79 +42,79 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Peida leidmise tööriistariba"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Ava kaust"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Peida leidmise tööriistariba"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Näita eelvaadet"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Sümbolid"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Peida terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Näita terminali"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Kõik Failid"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Tekstifailid"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Faili avamine"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Ava"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -122,29 +122,29 @@ msgstr "Ava"
msgid "Cancel"
msgstr "Loobu"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Ava"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Loobu"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -922,57 +922,57 @@ msgstr "Uus aken"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Automaatne taandus:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Vahemärkide lisamine tab'i märgi asemel:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Tab - klahvi laius vahemärkidena:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Mine reale:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "Rea numbrite näitamine:"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, fuzzy, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "Vahemärkide kuvamine:"
msgstr[1] "Vahemärkide kuvamine:"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/eu.po b/po/eu.po
index 3825a48934..53b7b3a07e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2016-09-11 21:29+0000\n"
"Last-Translator: Thadah Denyse \n"
"Language-Team: Basque \n"
@@ -42,79 +42,79 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Ezkutatu bilaketa-barra"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Ireki karpeta"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Ezkutatu bilaketa-barra"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Erakutsi aurreikuspena"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Ikurrak"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Ezkutatu terminala"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Erakutsi terminala"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Fitxategi guztiak"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Testu-fitxategiak"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Fitxategi batzuk ireki"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Ireki"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -122,29 +122,29 @@ msgstr "Ireki"
msgid "Cancel"
msgstr "Utzi"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Ireki"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Utzi"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -911,57 +911,57 @@ msgstr "Leiho berria"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Koska automatikoa:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Txertatu zuriuneak tabuladoreen ordez:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Tabuladorearen zabalera:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Joan lerrora:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "Erakutsi lerro zenbakiak:"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/extra/aa.po b/po/extra/aa.po
index c8ca1d1985..30a7f0d33d 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ab.po b/po/extra/ab.po
index 8420a041fe..ee74660479 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ae.po b/po/extra/ae.po
index 19387823dd..aa9fe51b26 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/af.po b/po/extra/af.po
index 7e1e4f615c..cd9883a872 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ak.po b/po/extra/ak.po
index 5cd06915f6..c623fd4114 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/am.po b/po/extra/am.po
index 5c4e8b6588..b37136bf2f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/an.po b/po/extra/an.po
index 58a98bd6c1..ada3fc3bdc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ar.po b/po/extra/ar.po
index c0d3c031cf..a626d00dec 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2021-09-06 18:12+0000\n"
"Last-Translator: aalhaif \n"
"Language-Team: Arabic \n"
@@ -113,508 +113,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/as.po b/po/extra/as.po
index 32faddaeec..3d078f9dbd 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ast.po b/po/extra/ast.po
index 3df1b316f0..2231443bc6 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/av.po b/po/extra/av.po
index c844a04b7a..392d0af33f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ay.po b/po/extra/ay.po
index 7db4511e52..3f5201d383 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/az.po b/po/extra/az.po
index 89b92e1b66..03bf8ec2ce 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ba.po b/po/extra/ba.po
index e7814d6eec..e87c9368b5 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/be.po b/po/extra/be.po
index 0642283814..2a3f4ef1b0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -122,508 +122,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/br.po b/po/extra/br.po
index b3b6f5211c..71e09f6cbc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/bs.po b/po/extra/bs.po
index 21c25f1cdb..66b9de810b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -141,508 +141,508 @@ msgstr "Volitelná minimapa, která usnadňuje pohyb po větších souborech"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Drobné aktualizace:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Aktualizovány překlady"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "Vylepšení:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Drobné aktualizace:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Aktualizovány překlady"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Opravuje:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/cu.po b/po/extra/cu.po
index 2ab18a50b7..5798d7a0fa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/cv.po b/po/extra/cv.po
index ab1f69a6a9..f384bde299 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/cy.po b/po/extra/cy.po
index ad93a60fce..94f3ee5a1b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/da.po b/po/extra/da.po
index e00580c084..0cc70177b4 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-05-27 12:11+0000\n"
"Last-Translator: Rantyrant \n"
"Language-Team: Danish \n"
@@ -135,508 +135,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Mindre opdateringer:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Opdaterede oversættelser"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Mindre opdateringer:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Opdaterede oversættelser"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Rettelser:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/de.po b/po/extra/de.po
index 5ed8126ffb..7e120ba56f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2022-07-06 19:12+0000\n"
"Last-Translator: Uwe S \n"
"Language-Team: German \n"
@@ -145,508 +145,508 @@ msgstr "Optionale Mini-Map um das Navigieren in großen Dateien zu vereinfachen"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Weitere Aktualisierungen:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Aktualisierte Übersetzungen"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "Verbesserungen:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Weitere Aktualisierungen:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Aktualisierte Übersetzungen"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Fehlerbehebungen:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/dv.po b/po/extra/dv.po
index 90aab3709d..4681ceaab8 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/dz.po b/po/extra/dz.po
index 1d660868ca..da052a8e65 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ee.po b/po/extra/ee.po
index b5225fdb43..53fc1ca1fc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/el.po b/po/extra/el.po
index c8f32d56f8..b143fe364d 100644
--- a/po/extra/el.po
+++ b/po/extra/el.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
-"PO-Revision-Date: 2026-07-10 12:01+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
+"PO-Revision-Date: 2026-07-25 20:01+0000\n"
"Last-Translator: Jim Spentzos \n"
"Language-Team: Greek \n"
@@ -114,508 +114,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Μικρές ενημερώσεις:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Ενημερωμένες μεταφράσεις"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "Βελτιώσεις:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
-msgstr ""
+msgstr "Ανασχεδιασμένο εικονίδιο εφαρμογής"
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Διορθώσεις:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po
index 341ad3582f..7ffd49354e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -122,508 +122,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/eu.po b/po/extra/eu.po
index 2037c6e466..0fe7b2be29 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2016-09-11 21:37+0000\n"
"Last-Translator: Félix Brezo \n"
"Language-Team: Basque \n"
@@ -112,508 +112,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/extra.pot b/po/extra/extra.pot
index 175b4c04a8..d88e7a293a 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -111,508 +111,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/fa.po b/po/extra/fa.po
index 5343470321..a9b1730a2d 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Persian \n"
@@ -112,508 +112,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ff.po b/po/extra/ff.po
index f3248a0a61..f12d2ed6d9 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/fi.po b/po/extra/fi.po
index 5aa546d427..a5c10a71d0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2024-12-01 18:10+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish \n"
@@ -132,508 +132,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Pienet päivitykset:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Päivitetyt käännökset"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Pienet päivitykset:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Päivitetyt käännökset"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Korjaukset:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/fj.po b/po/extra/fj.po
index b2d036d0b2..2fc5c14896 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/fo.po b/po/extra/fo.po
index f933c7c53b..c8b3a52f83 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -111,508 +111,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/fr.po b/po/extra/fr.po
index d8d062eb3e..de14013be7 100644
--- a/po/extra/fr.po
+++ b/po/extra/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-02-20 09:56+0000\n"
"Last-Translator: Nathan \n"
"Language-Team: French \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"
@@ -142,373 +142,373 @@ msgstr "Peta mini opsional untuk memudahkan navigasi berkas besar"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Pembaruan kecil:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Pembaruan terjemahan"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "Peningkatan:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Pembaruan kecil:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Pembaruan terjemahan"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr "Opsi pencarian dipindahkan ke menu bilah pencarian"
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr "Penambahan opsi pencarian seluruh kata"
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Seluruh kata, mode sensitif abjad dan menggunakan pengaturan pencarian regex "
"sekarang tetap ada"
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"Bilah pencarian sekarang diperbarui dengan benar setelah mengubah dokumen "
"aktif"
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Mencoba menyimpan dokumen ke lokasi yang tidak dapat ditulis sekarang "
"ditangani dengan lebih baik"
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -516,12 +516,12 @@ msgstr ""
"Gaya sistem sekarang diikuti oleh garis tepi simbol dan ketika diluncurkan "
"tanpa dokumen terbuka"
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
"Pencarian sensitif abjad campuran sekarang berfungsi seperti yang diharapkan"
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
#, fuzzy
#| msgid ""
#| "The search results no longer change unexpectedly when focussing a document"
@@ -530,7 +530,7 @@ msgid ""
msgstr ""
"Hasil pencarian tidak lagi berubah tiba-tiba ketika memfokuskan dokumen"
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -538,7 +538,7 @@ msgstr ""
"Sekarang selalu ada proyek aktif saat startup jika ada proyek di bilah "
"samping"
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -546,31 +546,31 @@ msgstr ""
"Jika cabang pengembangan berjalan, ini akan ditampilkan di judul jendela dan "
"di tooltip dok"
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Pintasan Ctrl+PageUp dan Ctrl+PageDown sekarang beralih tab"
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr "Ikon aplikasi yang didesain ulang"
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr "Gaya baru kustom elementary gelap dan terang untuk tampilan sumber"
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr "Opsi untuk mengikuti preferensi gaya gelap sistem"
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr "Kemampuan untuk setengah ubin pada tampilan notebook kecil"
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -578,7 +578,7 @@ msgstr ""
"Temukan di Halaman dan Temukan di Project kini tersedia dari menu aplikasi, "
"bukan di bilah kepala"
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -586,7 +586,7 @@ msgstr ""
"Opsi untuk menyembunyikan dan menampilkan panel sekarang semuanya hadir "
"dalam satu set tombol tertaut yang ringkas di menu aplikasi"
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -594,13 +594,13 @@ msgstr ""
"Bar samping sekarang berisi tombol pemilih proyek dan mengisi ketinggian "
"jendela"
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Memulai pencarian global dengan teks yang dipilih sekarang akan mengisi teks "
"tersebut sebelumnya"
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
@@ -609,7 +609,7 @@ msgstr ""
"sumber dan dapat ditampilkan dan disembunyikan dengan pintasan keyboard "
"\"Alt + \\\""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -617,7 +617,7 @@ msgstr ""
"Terminal, Simbol garis tepi dan pengaya Strip Trailing Whitespace sekarang "
"menjadi bagian dari basis kode utama"
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -625,14 +625,14 @@ msgstr ""
"Memperlihatkan bilah info saat pengaturan lebar tab ditimpa oleh berkas "
"EditorConfig"
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"Pintasan untuk membangun kembali daftar pelengkapan kata sekarang adalah "
"\"Ctrl + |\""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -640,25 +640,25 @@ msgstr ""
"Sekarang nama berkas dokumen saat ini ditampilkan sebagai judul jendela "
"dalam tampilan multitugas"
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Folder tersembunyi sekarang ditampilkan di bilah samping proyek"
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr "Hasil yang saat ini dipilih dan jumlah hasil ditampilkan saat mencari"
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr "Bilah pencarian sekarang memiliki mode ekspresi reguler"
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Perbaikan:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -666,11 +666,11 @@ msgstr ""
"Sekarang dimungkinkan untuk mengubah cabang Git dengan berkas yang tidak "
"terlacak yang ada dalam sebuah proyek"
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr "Kemogokan dicegah saat mencari di proyek besar"
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
@@ -678,14 +678,14 @@ msgstr ""
"Dokumen yang benar sekarang difokuskan setelah membuka Kode dari program "
"eksternal"
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"Duplikasi baris sekarang ditindaklanjuti dengan benar jika tidak ada "
"pemilihan"
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
"Kode tidak lagi mogok saat diminta untuk membuka format URI yang tidak "
diff --git a/po/extra/ie.po b/po/extra/ie.po
index 04b698b4a3..ca8a6c6206 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ig.po b/po/extra/ig.po
index dab3eadb7b..ab18041ff3 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ii.po b/po/extra/ii.po
index c8a1db173e..5502402dab 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ik.po b/po/extra/ik.po
index 1bf2923e90..da27ae0cd4 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/io.po b/po/extra/io.po
index 95fee43a38..293b801518 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/is.po b/po/extra/is.po
index 97a3ac1254..3a74ad4c9b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/it.po b/po/extra/it.po
index f0e50f1329..7e0d341650 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-10-23 17:15+0000\n"
"Last-Translator: Fabio Zaramella \n"
"Language-Team: Italian \n"
@@ -136,508 +136,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Aggiornamenti minori:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Traduzioni aggiornate"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Aggiornamenti minori:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Traduzioni aggiornate"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Correzioni:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/iu.po b/po/extra/iu.po
index 15b5c226f9..690c1f6ee5 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ja.po b/po/extra/ja.po
index a831e00f81..0863da52fe 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-07-20 03:58+0000\n"
"Last-Translator: Ryo Nakano \n"
"Language-Team: Japanese \n"
"Language-Team: Georgian \n"
"Language-Team: Korean \n"
@@ -134,508 +134,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "소소한 업데이트:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "최신 번역"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "소소한 업데이트:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "최신 번역"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/kr.po b/po/extra/kr.po
index c7a9e6b0a7..d43f78c346 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ks.po b/po/extra/ks.po
index 88e91809eb..f471a56cb0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ku.po b/po/extra/ku.po
index f8c5e085ee..0a1b9e8b28 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-06-01 00:06+0000\n"
"Last-Translator: Rokar \n"
"Language-Team: Kurdish \n"
"Language-Team: Kirghiz \n"
@@ -121,508 +121,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/la.po b/po/extra/la.po
index cbf3354938..bc8039b1e6 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/lb.po b/po/extra/lb.po
index df4543892e..ebd8332ce1 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/lg.po b/po/extra/lg.po
index bb958fc8ea..80939880b7 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/li.po b/po/extra/li.po
index da1bdafcc8..142a1c0a64 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ln.po b/po/extra/ln.po
index 0bc5822715..3a9d222b53 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/lo.po b/po/extra/lo.po
index 5763803595..b8d803abd9 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/lt.po b/po/extra/lt.po
index 2335d6d59e..32b135d38e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-08-29 15:22+0000\n"
"Last-Translator: Moo \n"
"Language-Team: Lithuanian \n"
"Language-Team: Latvian \n"
@@ -119,508 +119,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mg.po b/po/extra/mg.po
index 11f16df6fb..38316d60fa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mh.po b/po/extra/mh.po
index b85962a1be..669a677adf 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mi.po b/po/extra/mi.po
index ffac44bf37..264b97f272 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mk.po b/po/extra/mk.po
index 4e304c0a23..9e60eb75e8 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ml.po b/po/extra/ml.po
index 3c454c326f..bd3bd31215 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mn.po b/po/extra/mn.po
index b2dce2b15a..131c22e419 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/mr.po b/po/extra/mr.po
index d172302937..a0801d83b2 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2021-03-21 00:15+0000\n"
"Last-Translator: Prachi Joshi \n"
"Language-Team: Marathi \n"
@@ -134,508 +134,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "एलिमेंटरी LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "किरकोळ अद्यतने:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "अद्ययावत अनुवाद"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "किरकोळ अद्यतने:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "अद्ययावत अनुवाद"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "निराकारणे:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ms.po b/po/extra/ms.po
index dbbbb051b1..e709567df6 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
"Language-Team: Norwegian Nynorsk \n"
"Language-Team: Occitan \n"
@@ -114,508 +114,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/oj.po b/po/extra/oj.po
index ec844cb39f..7d1ed73693 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/om.po b/po/extra/om.po
index 8d6766219e..be660e2903 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/or.po b/po/extra/or.po
index 7b6291ece9..451400962a 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/os.po b/po/extra/os.po
index 8f1d3aed7a..c341fe87f6 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/pa.po b/po/extra/pa.po
index d406d6716c..760f8e9233 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2021-07-27 11:47+0000\n"
"Last-Translator: elSolus \n"
"Language-Team: Punjabi \n"
@@ -112,508 +112,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/pi.po b/po/extra/pi.po
index 8023f40299..df9fb45054 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/pl.po b/po/extra/pl.po
index 297a6c755f..39a65b4d42 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -113,508 +113,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/sk.po b/po/extra/sk.po
index f0d5295a41..b425e426d4 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2022-09-30 22:14+0000\n"
"Last-Translator: JohnDumpling \n"
"Language-Team: Slovak \n"
@@ -143,489 +143,489 @@ msgstr "Voliteľná minimapa, ktorá zjednodušuje pohyb po väčších súboroc
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Menšie aktualizácie:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Aktualizované preklady"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "Vylepšenia:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Menšie aktualizácie:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Aktualizované preklady"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr "Možnosť rešpektovať systémové nastavenie tmavého štýlu"
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
"Názov aktuálneho dokumentu sa teraz zobrazí ako názov okna v zobrazení úloh"
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Skryté priečinky sa teraz zobrazujú v bočnom paneli projektu"
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
"Práve zvolený výsledok a počet výsledkov sa zobrazia počas vyhľadávania"
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr "Panel vyhľadávania teraz podporuje režim regulárneho výrazu"
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Opravy:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -633,23 +633,23 @@ msgstr ""
"Teraz je možné zmeniť vetvu Git s nesledovanými súbormi, ktoré sa nachádzajú "
"v projekte"
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr "Zabránenie pádov pri vyhľadávaní vo veľkých projektoch"
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
"Po otvorení aplikácie Kód z externého programu bude zameraný správny dokument"
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "Duplikácia riadkov je vykonávaná správne, ak nie je nič vybrané"
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "Kód už nepadá, keď je požiadaný o otvorenie neznámeho URI formátu"
diff --git a/po/extra/sl.po b/po/extra/sl.po
index ac7fff81f6..bf60c06c44 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-03-02 23:09+0000\n"
"Last-Translator: Marko \n"
"Language-Team: Slovenian \n"
"Language-Team: Albanian \n"
@@ -113,508 +113,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/sr.po b/po/extra/sr.po
index 33ce013f50..afad4f190e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2021-03-11 12:54+0000\n"
"Last-Translator: Мирослав Николић \n"
"Language-Team: Serbian \n"
@@ -136,508 +136,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary LLC."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Мања освежења:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Освежени преводи"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Мања освежења:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Освежени преводи"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Поправке:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ss.po b/po/extra/ss.po
index f5e1945eba..fe970ddca3 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/st.po b/po/extra/st.po
index 15c3fd3030..f9221fc456 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/su.po b/po/extra/su.po
index 49e8305066..88b0cb9fda 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/sv.po b/po/extra/sv.po
index 332f6a6809..f55262582d 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-02-24 11:55+0000\n"
"Last-Translator: Daniel Nylander \n"
"Language-Team: Swedish \n"
"Language-Team: Silesian \n"
"Language-Team: Thai \n"
@@ -112,508 +112,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ti.po b/po/extra/ti.po
index b1cea67a3c..e73423c86a 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/tk.po b/po/extra/tk.po
index f3dd0862a5..748b89737d 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/tl.po b/po/extra/tl.po
index 73a210f146..665bad2952 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -144,301 +144,301 @@ msgstr ""
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Küçük güncellemeler:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Çeviriler güncellendi"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "İyileştirmeler:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Küçük güncellemeler:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Çeviriler güncellendi"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
#, fuzzy
#| msgid "The Terminal pane now has a settable default directory"
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr "Terminal bölmesi artık ayarlanabilir bir varsayılan dizine sahip"
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr "Anahat bölmesine sembol filtresi ekle"
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr "Terminal bölmesi artık ayarlanabilir bir varsayılan dizine sahip"
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr "Geliştirilmiş animasyonlar ve Sürükle-Bırak ile Yeni Sekme Çubuğu"
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
@@ -446,15 +446,15 @@ msgstr ""
"Komut satırından veya başka bir uygulamadan Kod'da bir dosya açıldığında, "
"bir satır/karakter konumu veya seçim aralığı belirtilebilir"
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr "Tüm açık projelerdeki dosyaları bulan bir fuzzy-find eklentisi ekleyin"
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr "Terminal bölmesinin durumunu kaydedin ve geri yükleyin"
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
@@ -462,19 +462,19 @@ msgstr ""
"\"Klasörde Bul\" artık yalnızca \".vala\" dosyaları için değil, tüm "
"klasörler ve metin dosyaları için çalışıyor"
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr "\"Sistem Stilini Takip Et\" artık tam olarak dikkate alınıyor"
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr "\"--new-tab\" komut satırı seçeneği artık çalışıyor"
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr "Sembol bölmesi genişliği artık senkronize ediliyor ve kaydediliyor"
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
@@ -482,42 +482,42 @@ msgstr ""
"Proje klasörleri, harici olarak yeniden adlandırıldığında, taşındığında veya "
"silindiğinde otomatik olarak kapatılır"
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr "Bazı durumlarda geçici yedekleme dosyalarının kalıcı olması düzeltildi"
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr "Göster-Değiştir eylemi iyileştirildi"
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr "Arama seçenekleri arama çubuğu menüsüne aktarıldı"
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr "Tüm kelime arama seçeneği eklendi"
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
"Tüm kelime, büyük/küçük harfe duyarlı mod ve regex arama ayarlarının "
"kullanımı artık saklanıyor"
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
"Etkin belge değiştirildikten sonra arama çubuğu artık düzgün bir şekilde "
"güncelleniyor"
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
"Bir belgeyi yazılamaz bir konuma kaydetmeye çalışmak artık daha iyi işleniyor"
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
@@ -525,18 +525,18 @@ msgstr ""
"Açık belgeler olmadan başlatıldığında ve sistem stili sembol anahattı "
"tarafından takip ediliyor"
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr "Karma büyük/küçük harfe duyarlı arama artık beklendiği gibi çalışıyor"
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
"Bir belgeye odaklanıldığında arama sonuçları artık beklenmedik şekilde "
"değişmiyor"
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
@@ -544,7 +544,7 @@ msgstr ""
"Artık kenar çubuğunda projeler varsa başlangıçta her zaman etkin bir proje "
"var"
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
@@ -552,31 +552,31 @@ msgstr ""
"Bir geliştirme dalı çalışıyorsa bu, pencere başlığında ve dock araç ipucunda "
"gösterilir"
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Ctrl+PageUp ve Ctrl+PageDown kısayolları artık sekmeleri değiştiriyor"
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr "Başlangıçta etkin proje sağlansın (git olmayan klasörleri dahil)"
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr "Yeniden tasarlanan uygulama simgesi"
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr "Kaynak görünüm için yeni özel koyu ve açık elementary stilleri"
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr "Sistem koyu renk tema tercihini takip etme seçeneği eklendi"
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr "Küçük dizüstü bilgisayar ekranlarında yarı döşeme yeteneği"
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
@@ -584,7 +584,7 @@ msgstr ""
"Hem Sayfada Bul hem de Projede Bul artık başlık çubuğundan ziyade "
"uygulamanın menüsünden kullanılabilir"
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
@@ -592,7 +592,7 @@ msgstr ""
"Panelleri gizleme ve gösterme seçenekleri artık uygulamanın menüsünde "
"kompakt bağlantılı düğmeler olarak mevcut"
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
@@ -600,13 +600,13 @@ msgstr ""
"Kenar çubuğu artık proje seçici düğmesini içeriyor ve pencerenin "
"yüksekliğini dolduruyor"
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
"Artık seçili metinle küresel bir arama başlatıldığında, söz konusu metin "
"önceden dolduruluyor"
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
@@ -614,7 +614,7 @@ msgstr ""
"Sembol anahat bölmesi artık kaynak görünümünün sağında gösteriliyor ve \"Alt "
"+ \\\" klavye kısayoluyla gösterilip gizlenebiliyor"
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
@@ -622,7 +622,7 @@ msgstr ""
"Terminal, Sembol anahattı ve Strip Trailing Whitespace eklentileri artık ana "
"kod tabanının bir parçası"
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
@@ -630,13 +630,13 @@ msgstr ""
"Sekme genişliği ayarları bir EditorConfig dosyası tarafından üzerine "
"yazıldığında bir bilgi çubuğu göster"
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
"Tamamlama sözcük listesini yeniden oluşturmanın kısayolu artık \"Ctrl + |\""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
@@ -644,25 +644,25 @@ msgstr ""
"Geçerli belgenin dosya adı artık çoklu görev görünümünde bir pencere başlığı "
"olarak gösteriliyor"
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr "Gizli klasörler artık proje kenar çubuğunda gösteriliyor"
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr "Şu anda seçili olan sonuç ve sonuç sayısı arama sırasında görüntülenir"
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr "Arama çubuğunun şimdi düzenli ifade modu bulunmaktadır"
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "Düzeltmeler:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
@@ -670,24 +670,24 @@ msgstr ""
"Bir projede bulunan dokunulmamış dosyalar içeren Git dalını şimdi "
"değiştirmeniz mümkün"
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr "Büyük projelerde arama yaparken oluşan çökmelerin önüne geçilmiştir"
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
"Kod'u dış bir programdan açtıktan sonra doğru belgeye odaklanılmaktadır"
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
"Eğer herhangi bir seçim yoksa satır tekrarı doğru bir şekilde uygulanmaktadır"
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "Kod; bilinmeyen bir URI formatı açılması istendiğinde artık çökmüyor"
diff --git a/po/extra/ts.po b/po/extra/ts.po
index ec4e112f73..ff968823d1 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/tt.po b/po/extra/tt.po
index 946fc0c6ad..285c79d465 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/tw.po b/po/extra/tw.po
index fd28031a55..8e5a8e2eb1 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ty.po b/po/extra/ty.po
index e029f75bfa..fa71bfaddf 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ug.po b/po/extra/ug.po
index 8622c5550c..912de6d543 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2016-12-07 08:58+0000\n"
"Last-Translator: ablimet \n"
"Language-Team: Uyghur \n"
@@ -124,508 +124,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/uk.po b/po/extra/uk.po
index 0d5071580d..0a3215211f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -133,508 +133,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "Kichik yangilanishlar:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "Yangilangan tarjimalar"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "Kichik yangilanishlar:"
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "Yangilangan tarjimalar"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "To'g'rilashlar:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/ve.po b/po/extra/ve.po
index dd5b0dfa1e..16d23863a0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/vi.po b/po/extra/vi.po
index bb08fcbb02..2ebcc03e8a 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -111,508 +111,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/vo.po b/po/extra/vo.po
index 38811e92de..62e48819c1 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/wa.po b/po/extra/wa.po
index 941e283e4b..bc0cdb08f4 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/wo.po b/po/extra/wo.po
index 79dadb899c..e0f618d6c0 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/xh.po b/po/extra/xh.po
index 0279b58c1b..a36bdca4bd 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/yi.po b/po/extra/yi.po
index 090a768860..0added1702 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/yo.po b/po/extra/yo.po
index 63c88bfb4b..14b3752cb7 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/za.po b/po/extra/za.po
index 385bb8fc73..41f77fc36f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/zh.po b/po/extra/zh.po
index da8887967b..70050cc8ef 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-09-10 14:55+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Chinese \n"
@@ -112,508 +112,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/extra/zh_CN.po b/po/extra/zh_CN.po
index 756e605ce4..ee1197de8f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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) \n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.11.4\n"
+"X-Generator: Weblate 2026.5\n"
"X-Launchpad-Export-Date: 2017-05-03 06:04+0000\n"
#: data/code.metainfo.xml.in:9
@@ -130,222 +130,222 @@ msgstr "可關閉的小地圖,讓瀏覽大檔案變得更容易"
msgid "elementary, Inc."
msgstr "elementary, Inc."
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr "小型更新:"
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr "更新翻譯"
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr "改善:"
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
-msgstr ""
+msgstr "讓側邊欄可以使用鍵盤快捷鍵來聚焦"
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
-msgstr ""
+msgstr "確保用標頭列或快捷鍵關閉第二個視窗的時候只會關閉該視窗並儲存它的文件"
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
-msgstr ""
+msgstr "新增在偏好設定對話框顯示或選取系統字型的功能"
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
-msgstr ""
-
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr "小型更新:"
+msgstr "為選取範圍使用使用者的強調色,以改善桌面環境的一致性與對比"
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
-msgstr ""
+msgstr "確保用快捷鍵關閉所有視窗時所有文件皆會正確儲存"
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr "更新翻譯"
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr "將高對比風格方案改為 elementary 的版本,並改善行數對比"
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr "終端機面板的配色方案設定值現在與終端機應用程式同步"
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr "提供停用語法突顯的選項"
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr "新增讓專案資料夾維持持續排序的選項"
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
-msgstr "修正沒有《終端機》或 GNOME 設定值時會崩潰的問題"
+msgstr "修正沒有《終端機》或 GNOME 設定時會崩潰的問題"
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr "終端機面板現在能正常處理 shell 退出的情況"
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr "終端機面板現在在啟動或開啟時會進入目前作用中專案的路徑"
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr "修正能夠開啟多個 Pastebin 對話框的問題"
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr "修正可能在會讓側邊欄在啟動時造成崩潰的一個問題"
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr "修正兩個全域搜尋會顯示錯誤資訊的問題"
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr "在 C 語言符號的工具提示裡提供更多資訊"
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr "用 toast 而非對話框來顯示拓製成功"
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr "讓專案內搜尋和檔案內搜尋使用相同的區分大小寫設定"
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr "修正開啟第二個視窗會使專案在專案挑選器當中重複出現的問題"
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr "終端機面板的前景、背景和調色盤設定值現在與終端機應用程式同步"
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr "終端機面板的字型與游標閃爍設定值現在與 GNOME 的設定值同步"
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr "新增拓製遠端 Git 版本庫的選項到專案挑選器內文選單"
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr "將「開啟資料夾」動作移動到專案挑選器內文選單"
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr "Vala 符號面板在載入中的時候現在會顯示旋轉圖示"
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr "修正 C 符號面板的過濾器無法正常運作的問題"
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr "新增用來加入/移除編輯標記的標示區域,這些標記可以用鍵盤快捷鍵瀏覽"
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr "新增從「分支」選單開啟遠端分支的功能"
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr "在有未提交的變更時切換分支的時候現在會提供要覆寫還是取消的選項"
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr "讓 Flatpak 版也能存取網路"
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr "在「分支」子選單以分支名稱順序排序分支"
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr "讓擴充元件列表使用切換開關而非勾選方塊,這樣點擊目標比較大"
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
@@ -353,78 +353,78 @@ msgstr ""
"新增智慧複製貼上的功能到終端機面板,並讓它跟隨《終端機》應用程式的「自然複製"
"貼上」設定值"
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr "讓 Vala 符號面板在工具提示裡提供更多資訊"
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr "為啟動器動作加上圖示"
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr "修正開啟新文件後馬上關閉它會使應用程式無法開啟更多文件的問題"
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr "修正 Vala 符號面板在有非常多符號時會擋住介面更新太久的問題"
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr "修正 Flatpak 版的「開啟於…」選單是空的的問題"
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr "讓搜尋字詞只有在編輯搜尋列或關閉搜尋列的時候才會改變或清空。"
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr "不再允許將已開啟專案的上層目錄或子目錄本身同時作為專案開啟"
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr "維持作用中專案下拉式選單內容同步"
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr "讓 Markdown 外掛程式正確處理編號清單"
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr "讓標明外掛程式在選取不只一個單詞時也能正常運作"
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr "排序「開啟於…」選單並在其中包含「終端機面板」項目"
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr "展開內含非常多項目的資料夾時介面不會再被阻擋更新而卡住"
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr "讓符號面板總是把文件捲動到所選符號"
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr "在大綱面板中加入符號過濾器"
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr "終端機面板現在提供設定預設目錄的選項"
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr "新分頁列,提供改善的動畫與拖放"
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
@@ -432,142 +432,142 @@ msgstr ""
"從指令列或另一個應用程式讓 Code 開啟檔案時,現在能夠指定行數/欄位位置或選取範"
"圍"
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr "新增模糊搜尋插件,它能夠在所有已開啟專案中尋找檔案"
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr "儲存或復原終端機面板狀態"
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr "「在資料夾中尋找」現在支援所有資料夾和文字檔案,不只有 \".vala\" 檔案"
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr "修正沒有完全遵循「跟隨系統風格」設定值的問題"
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr "\"--new-tab\" 指令列選項現在能用了"
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr "同步並儲存符號面板的寬度"
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr "專案資料夾在外部被重新命名、移動或刪除時自動將其關閉"
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr "修正暫存備份檔在某些情況下會留下來的問題"
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr "改善 Show-Replace 動作"
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr "將搜尋選項移到搜尋列選單"
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr "新增搜尋整個單詞的選項"
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr "現在會記住完整單詞、區分大小寫、以及是否使用正則表達式的選項"
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr "搜尋列現在在變更作用中文件後會正確更新"
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr "改善嘗試將文件儲存到不可寫入的位置時的處理方式"
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr "在符號大綱中,以及在剛啟動且未開啟任何文件時遵循系統風格"
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr "混合大小寫的搜尋現在會正常運作"
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr "聚焦文件時搜尋結果不再會突然跑掉"
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr "現在只要側邊欄中有專案,啟動時就一定會有作用中專案"
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr "執行開發版分支時在視窗標題與 Dock 工具提示中顯示"
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr "Ctrl+PageUp 和 Ctrl+PageDown 快捷鍵現在會切換分頁"
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr "啟動時確保有作用中專案(包含非由 git 管理的資料夾)"
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr "重新設計過的應用程式圖示"
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr "在原始碼檢視中提供新的自訂 elementary 深色與淺色風格"
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr "新增跟隨系統深色風格的選項"
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr "修正在不夠大的筆電螢幕上無法鋪排視窗的問題"
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr "將「在頁面上尋找」和「在專案中尋找」從標頭列移到應用程式選單中"
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr "將顯示/隱藏面板的各按鈕全部整理成應用程式選單裡的相連按鈕"
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr "將專案挑選按鈕加入側邊欄中,並讓側邊欄填滿視窗高度"
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr "進行全域搜尋時如果有選擇文字,讓該文字變成搜尋的文字"
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
@@ -575,69 +575,69 @@ msgstr ""
"符號大綱面板現在顯示在程式碼檢視的右邊,並且可使用 \"Alt + \\\" 快捷鍵來顯示"
"或隱藏"
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr "將終端機、符號大綱、刪除行尾空白三個插件的程式碼併入主程式碼版本庫中"
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr "Tab 字元寬度被 EditorConfig 設定檔案覆寫時顯示資訊列來提醒"
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr "更新單字補完的單字列表的快捷鍵現在改為 \"Ctrl + |\""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr "在多工作業檢視中現在會將目前文件的檔案名稱顯示為視窗標題"
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr "在專案側邊欄當中顯示隱藏檔案"
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr "搜尋時顯示目前所選的結果與結果總數"
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr "為搜尋列加入正則表達式模式"
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr "修正:"
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr "專案中即使有未追蹤的檔案現在也能變更 Git 分支"
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr "防止在大型專案中搜尋時發生的崩潰"
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr "從外部程式開啟 Code 時聚焦正確的文件"
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr "現在即使沒有選擇行,重製行數的功能也能正確執行"
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr "修正開啟未知的 URI 格式時會崩潰的問題"
diff --git a/po/extra/zu.po b/po/extra/zu.po
index 879123d45a..aa902eb914 100644
--- a/po/extra/zu.po
+++ b/po/extra/zu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-10-18 14:13-0700\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -110,508 +110,508 @@ msgstr ""
msgid "elementary, Inc."
msgstr ""
-#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:104
-#: data/code.metainfo.xml.in:125 data/code.metainfo.xml.in:193
-#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:286
-#: data/code.metainfo.xml.in:314 data/code.metainfo.xml.in:353
-#: data/code.metainfo.xml.in:401 data/code.metainfo.xml.in:433
+#: data/code.metainfo.xml.in:73 data/code.metainfo.xml.in:95
+#: data/code.metainfo.xml.in:126 data/code.metainfo.xml.in:147
+#: data/code.metainfo.xml.in:176 data/code.metainfo.xml.in:193
+#: data/code.metainfo.xml.in:212 data/code.metainfo.xml.in:243
+#: data/code.metainfo.xml.in:285 data/code.metainfo.xml.in:306
+#: data/code.metainfo.xml.in:335 data/code.metainfo.xml.in:374
+#: data/code.metainfo.xml.in:423 data/code.metainfo.xml.in:463
+msgid "Minor updates:"
+msgstr ""
+
+#: data/code.metainfo.xml.in:75 data/code.metainfo.xml.in:101
+#: data/code.metainfo.xml.in:129 data/code.metainfo.xml.in:155
+#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:197
+#: data/code.metainfo.xml.in:217 data/code.metainfo.xml.in:257
+#: data/code.metainfo.xml.in:288 data/code.metainfo.xml.in:308
+#: data/code.metainfo.xml.in:344 data/code.metainfo.xml.in:385
+#: data/code.metainfo.xml.in:433 data/code.metainfo.xml.in:465
+msgid "Updated translations"
+msgstr ""
+
+#: data/code.metainfo.xml.in:88 data/code.metainfo.xml.in:119
+#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:208
+#: data/code.metainfo.xml.in:232 data/code.metainfo.xml.in:301
+#: data/code.metainfo.xml.in:329 data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:416 data/code.metainfo.xml.in:448
msgid "Improvements:"
msgstr ""
-#: data/code.metainfo.xml.in:75
+#: data/code.metainfo.xml.in:90
msgid "The sidebar can now be focused using a keyboard shortcut"
msgstr ""
-#: data/code.metainfo.xml.in:76
+#: data/code.metainfo.xml.in:91
msgid ""
"Closing a second window by headerbar or shortcut only closes that window, "
"saving its documents"
msgstr ""
-#: data/code.metainfo.xml.in:77
+#: data/code.metainfo.xml.in:92
msgid "The system font is shown and can be selected in the Preferences dialog"
msgstr ""
-#: data/code.metainfo.xml.in:78
+#: data/code.metainfo.xml.in:93
msgid ""
"Improved desktop consistency and contrast by using user accent color for "
"selections"
msgstr ""
-#: data/code.metainfo.xml.in:80 data/code.metainfo.xml.in:111
-#: data/code.metainfo.xml.in:132 data/code.metainfo.xml.in:161
-#: data/code.metainfo.xml.in:178 data/code.metainfo.xml.in:197
-#: data/code.metainfo.xml.in:228 data/code.metainfo.xml.in:270
-#: data/code.metainfo.xml.in:291 data/code.metainfo.xml.in:320
-#: data/code.metainfo.xml.in:359 data/code.metainfo.xml.in:408
-#: data/code.metainfo.xml.in:448
-msgid "Minor updates:"
-msgstr ""
-
-#: data/code.metainfo.xml.in:82
+#: data/code.metainfo.xml.in:97
msgid "Closing all windows by shortcut now correctly saves all documents"
msgstr ""
-#: data/code.metainfo.xml.in:83
+#: data/code.metainfo.xml.in:98
msgid ""
"Filetypes excluded from stripping trailing whitespace are shown in the "
"application menu"
msgstr ""
-#: data/code.metainfo.xml.in:84
+#: data/code.metainfo.xml.in:99
msgid "Stripping trailing whitespace now correctly excludes string literals"
msgstr ""
-#: data/code.metainfo.xml.in:85
+#: data/code.metainfo.xml.in:100
msgid "Fuzzy searching for project files now correctly searches active project"
msgstr ""
-#: data/code.metainfo.xml.in:86 data/code.metainfo.xml.in:114
-#: data/code.metainfo.xml.in:140 data/code.metainfo.xml.in:167
-#: data/code.metainfo.xml.in:182 data/code.metainfo.xml.in:202
-#: data/code.metainfo.xml.in:242 data/code.metainfo.xml.in:273
-#: data/code.metainfo.xml.in:293 data/code.metainfo.xml.in:329
-#: data/code.metainfo.xml.in:370 data/code.metainfo.xml.in:418
-#: data/code.metainfo.xml.in:450
-msgid "Updated translations"
-msgstr ""
-
-#: data/code.metainfo.xml.in:106
+#: data/code.metainfo.xml.in:121
msgid ""
"Trailing spaces are now removed when the document focuses out (subject to "
"setting)"
msgstr ""
-#: data/code.metainfo.xml.in:107
+#: data/code.metainfo.xml.in:122
msgid "Focus following is implemented between textview and terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:108
+#: data/code.metainfo.xml.in:123
msgid ""
"A new dialog for branch actions (open, new) is implemented linked to hot-key "
"Ctrl-B"
msgstr ""
-#: data/code.metainfo.xml.in:109
+#: data/code.metainfo.xml.in:124
msgid "It is now possible to create a new document from a template"
msgstr ""
-#: data/code.metainfo.xml.in:113
+#: data/code.metainfo.xml.in:128
msgid ""
"Restoring screen state no longer can get stuck always restoring full screen"
msgstr ""
-#: data/code.metainfo.xml.in:127
+#: data/code.metainfo.xml.in:142
msgid ""
"The high-contrast style-scheme is replaced by an elementary version with "
"improved contrast for line numbers"
msgstr ""
-#: data/code.metainfo.xml.in:128
+#: data/code.metainfo.xml.in:143
msgid "The terminal pane now follows Terminal app color-scheme setting"
msgstr ""
-#: data/code.metainfo.xml.in:129
+#: data/code.metainfo.xml.in:144
msgid "It is now possible to disable syntax highlighting"
msgstr ""
-#: data/code.metainfo.xml.in:130
+#: data/code.metainfo.xml.in:145
msgid "There is now an option to keep the project folders sorted"
msgstr ""
-#: data/code.metainfo.xml.in:134
+#: data/code.metainfo.xml.in:149
msgid "Absence of Terminal or Gnome settings no longer causes a crash"
msgstr ""
-#: data/code.metainfo.xml.in:135
+#: data/code.metainfo.xml.in:150
msgid "The terminal pane now handles the shell exiting gracefully"
msgstr ""
-#: data/code.metainfo.xml.in:136
+#: data/code.metainfo.xml.in:151
msgid ""
"The terminal pane now follows the current active project path on start or "
"opening"
msgstr ""
-#: data/code.metainfo.xml.in:137
+#: data/code.metainfo.xml.in:152
msgid "It is no longer possible to open multiple PasteBin dialogs"
msgstr ""
-#: data/code.metainfo.xml.in:138
+#: data/code.metainfo.xml.in:153
msgid "A cause of possible crashing by the sidebar on startup was fixed"
msgstr ""
-#: data/code.metainfo.xml.in:139
+#: data/code.metainfo.xml.in:154
msgid "Two issues where global search shows incorrect information are fixed"
msgstr ""
-#: data/code.metainfo.xml.in:163
+#: data/code.metainfo.xml.in:178
msgid "The tooltips for C symbols are now more informative"
msgstr ""
-#: data/code.metainfo.xml.in:164
+#: data/code.metainfo.xml.in:179
msgid "Cloning success is now indicated by toast instead of a dialog"
msgstr ""
-#: data/code.metainfo.xml.in:165
+#: data/code.metainfo.xml.in:180
msgid "Global search and local search now have the same case sensitivity"
msgstr ""
-#: data/code.metainfo.xml.in:166
+#: data/code.metainfo.xml.in:181
msgid ""
"Opening a second window no longer results in duplicate project entries in "
"the project chooser"
msgstr ""
-#: data/code.metainfo.xml.in:180
+#: data/code.metainfo.xml.in:195
msgid ""
"The terminal pane is now synchronized with the Terminal app foreground, "
"background and palette settings"
msgstr ""
-#: data/code.metainfo.xml.in:181
+#: data/code.metainfo.xml.in:196
msgid ""
"The terminal pane is now synchronized with GNOME font and cursor blink "
"settings"
msgstr ""
-#: data/code.metainfo.xml.in:195
+#: data/code.metainfo.xml.in:210
msgid ""
"The Project Chooser context menu now includes an option to clone a remote "
"git repository"
msgstr ""
-#: data/code.metainfo.xml.in:199
+#: data/code.metainfo.xml.in:214
msgid ""
"The \"Open Folder\" action now appears in the Project Chooser context menu"
msgstr ""
-#: data/code.metainfo.xml.in:200
+#: data/code.metainfo.xml.in:215
msgid "The Vala symbol pane now shows a spinner while loading"
msgstr ""
-#: data/code.metainfo.xml.in:201
+#: data/code.metainfo.xml.in:216
msgid "The filter in the C symbol pane now works"
msgstr ""
-#: data/code.metainfo.xml.in:219
+#: data/code.metainfo.xml.in:234
msgid ""
"A new gutter is added for adding/removing edit marks that can be navigated "
"between with keyboard shortcuts"
msgstr ""
-#: data/code.metainfo.xml.in:220
+#: data/code.metainfo.xml.in:235
msgid "Remote branches may now be opened from the \"Branch\" menu"
msgstr ""
-#: data/code.metainfo.xml.in:221
+#: data/code.metainfo.xml.in:236
msgid ""
"Options to overwrite or cancel are given when switching branch with "
"uncommitted changes"
msgstr ""
-#: data/code.metainfo.xml.in:222
+#: data/code.metainfo.xml.in:237
msgid "The network can now be accessed from within the Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:223
+#: data/code.metainfo.xml.in:238
msgid ""
"The branch names in the \"Branch\" submenus are now sorted alphabetically"
msgstr ""
-#: data/code.metainfo.xml.in:224
+#: data/code.metainfo.xml.in:239
msgid ""
"The extension list now has switches instead of checkboxes in order to "
"provide a larger target"
msgstr ""
-#: data/code.metainfo.xml.in:225
+#: data/code.metainfo.xml.in:240
msgid ""
"The terminal pane now implements smart copy-paste and follows the \"natural-"
"copy-paste\" setting of Terminal"
msgstr ""
-#: data/code.metainfo.xml.in:226
+#: data/code.metainfo.xml.in:241
msgid "The Vala symbol pane now gives more information in the tooltips"
msgstr ""
-#: data/code.metainfo.xml.in:230
+#: data/code.metainfo.xml.in:245
msgid "Launcher actions now have icons"
msgstr ""
-#: data/code.metainfo.xml.in:231
+#: data/code.metainfo.xml.in:246
msgid ""
"Opening and immediately closing a new document no longer prevents further "
"documents being opened"
msgstr ""
-#: data/code.metainfo.xml.in:232
+#: data/code.metainfo.xml.in:247
msgid ""
"The Vala symbol pane may only block the UI for a limited time if there are a "
"large number of symbols"
msgstr ""
-#: data/code.metainfo.xml.in:233
+#: data/code.metainfo.xml.in:248
msgid "The \"Open in …\" menu is no longer empty when running as Flatpak"
msgstr ""
-#: data/code.metainfo.xml.in:234
+#: data/code.metainfo.xml.in:249
msgid "The search term now persists until editing or closing the search bar."
msgstr ""
-#: data/code.metainfo.xml.in:235
+#: data/code.metainfo.xml.in:250
msgid ""
"No longer allow the parent or child of an open project to be itself opened "
"as a project"
msgstr ""
-#: data/code.metainfo.xml.in:236
+#: data/code.metainfo.xml.in:251
msgid "The active project dropdown now keeps in sync"
msgstr ""
-#: data/code.metainfo.xml.in:237
+#: data/code.metainfo.xml.in:252
msgid "Numbered lists are now handled correctly by Markdown plugin"
msgstr ""
-#: data/code.metainfo.xml.in:238
+#: data/code.metainfo.xml.in:253
msgid "The highlighting plugin now works with selections of more than one word"
msgstr ""
-#: data/code.metainfo.xml.in:239
+#: data/code.metainfo.xml.in:254
msgid ""
"The \"Open in …\" menu is now sorted and includes a \"Terminal Pane\" entry"
msgstr ""
-#: data/code.metainfo.xml.in:240
+#: data/code.metainfo.xml.in:255
msgid "Folders containing may items now expand faster without blocking the UI"
msgstr ""
-#: data/code.metainfo.xml.in:241
+#: data/code.metainfo.xml.in:256
msgid "Symbol Pane now always scrolls document to selected symbol"
msgstr ""
-#: data/code.metainfo.xml.in:272
+#: data/code.metainfo.xml.in:287
msgid "Add symbol filter to Outline pane"
msgstr ""
-#: data/code.metainfo.xml.in:288
+#: data/code.metainfo.xml.in:303
msgid "The Terminal pane now has a settable default directory"
msgstr ""
-#: data/code.metainfo.xml.in:289
+#: data/code.metainfo.xml.in:304
msgid "New Tab Bar with improved animations and Drag-n-Drop"
msgstr ""
-#: data/code.metainfo.xml.in:316
+#: data/code.metainfo.xml.in:331
msgid ""
"When opening a file in Code from the commandline or another app, a line/char "
"position or selection range may be specified"
msgstr ""
-#: data/code.metainfo.xml.in:317
+#: data/code.metainfo.xml.in:332
msgid "Add a fuzzy-find plugin which finds files in all open projects"
msgstr ""
-#: data/code.metainfo.xml.in:318
+#: data/code.metainfo.xml.in:333
msgid "Save and restore the state of the terminal pane"
msgstr ""
-#: data/code.metainfo.xml.in:322
+#: data/code.metainfo.xml.in:337
msgid ""
"\"Find in Folder\" now works for all folders and text files, not only "
"\".vala\" files"
msgstr ""
-#: data/code.metainfo.xml.in:323
+#: data/code.metainfo.xml.in:338
msgid "\"Follow System Style\" is now fully respected"
msgstr ""
-#: data/code.metainfo.xml.in:324
+#: data/code.metainfo.xml.in:339
msgid "The \"--new-tab\" commandline option now works"
msgstr ""
-#: data/code.metainfo.xml.in:325
+#: data/code.metainfo.xml.in:340
msgid "The symbol pane width is now synchronised and saved"
msgstr ""
-#: data/code.metainfo.xml.in:326
+#: data/code.metainfo.xml.in:341
msgid ""
"Project folders are automatically closed if they are externally renamed, "
"moved or deleted"
msgstr ""
-#: data/code.metainfo.xml.in:327
+#: data/code.metainfo.xml.in:342
msgid "Fixed temporary backup files persisting under some circumstances"
msgstr ""
-#: data/code.metainfo.xml.in:328
+#: data/code.metainfo.xml.in:343
msgid "The Show-Replace action has been improved"
msgstr ""
-#: data/code.metainfo.xml.in:355
+#: data/code.metainfo.xml.in:370
msgid "Search options transferred to searchbar menu"
msgstr ""
-#: data/code.metainfo.xml.in:356
+#: data/code.metainfo.xml.in:371
msgid "Whole word search option added"
msgstr ""
-#: data/code.metainfo.xml.in:357
+#: data/code.metainfo.xml.in:372
msgid ""
"Whole word, case sensitive mode and use regex search settings now persist"
msgstr ""
-#: data/code.metainfo.xml.in:361
+#: data/code.metainfo.xml.in:376
msgid "The search bar now updates properly after changing the active document"
msgstr ""
-#: data/code.metainfo.xml.in:362
+#: data/code.metainfo.xml.in:377
msgid ""
"Trying to save a document to an unwritable location is now handled better"
msgstr ""
-#: data/code.metainfo.xml.in:363
+#: data/code.metainfo.xml.in:378
msgid ""
"The system style is now followed by the symbol outline and when launched "
"without open documents"
msgstr ""
-#: data/code.metainfo.xml.in:364
+#: data/code.metainfo.xml.in:379
msgid "Mixed case sensitive search now works as expected"
msgstr ""
-#: data/code.metainfo.xml.in:365
+#: data/code.metainfo.xml.in:380
msgid ""
"The search results no longer change unexpectedly when focusing a document"
msgstr ""
-#: data/code.metainfo.xml.in:366
+#: data/code.metainfo.xml.in:381
msgid ""
"Now there is always an active project at startup if there are projects in "
"the sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:367
+#: data/code.metainfo.xml.in:382
msgid ""
"If a development branch is running this shows in the window title and in the "
"dock tooltip"
msgstr ""
-#: data/code.metainfo.xml.in:368
+#: data/code.metainfo.xml.in:383
msgid "Ctrl+PageUp and Ctrl+PageDown shortcuts now switch tabs"
msgstr ""
-#: data/code.metainfo.xml.in:369
+#: data/code.metainfo.xml.in:384
msgid "Ensure active project at startup (include non-git folders)"
msgstr ""
-#: data/code.metainfo.xml.in:403
+#: data/code.metainfo.xml.in:418
msgid "Redesigned app icon"
msgstr ""
-#: data/code.metainfo.xml.in:404
+#: data/code.metainfo.xml.in:419
msgid "New custom dark and light elementary styles for the source view"
msgstr ""
-#: data/code.metainfo.xml.in:405
+#: data/code.metainfo.xml.in:420
msgid "Option to follow the system dark style preference"
msgstr ""
-#: data/code.metainfo.xml.in:406
+#: data/code.metainfo.xml.in:421
msgid "Ability to half tile on small notebook displays"
msgstr ""
-#: data/code.metainfo.xml.in:410
+#: data/code.metainfo.xml.in:425
msgid ""
"Both Find on Page and Find in Project are now available from the app's menu "
"instead of in the headerbar"
msgstr ""
-#: data/code.metainfo.xml.in:411
+#: data/code.metainfo.xml.in:426
msgid ""
"Options for hiding and showing panels are now all present in a compact set "
"of linked buttons in the app's menu"
msgstr ""
-#: data/code.metainfo.xml.in:412
+#: data/code.metainfo.xml.in:427
msgid ""
"The sidebar now contains the project chooser button and fills the height of "
"the window"
msgstr ""
-#: data/code.metainfo.xml.in:413
+#: data/code.metainfo.xml.in:428
msgid "Starting a global search with text selected now pre-fills that text"
msgstr ""
-#: data/code.metainfo.xml.in:414
+#: data/code.metainfo.xml.in:429
msgid ""
"The symbol outline pane is now shown to the right of the source view and can "
"be shown and hidden with the keyboard shortcut \"Alt + \\\""
msgstr ""
-#: data/code.metainfo.xml.in:415
+#: data/code.metainfo.xml.in:430
msgid ""
"Terminal, Symbol outline, and the Strip Trailing Whitespace plugins are now "
"part of the main codebase"
msgstr ""
-#: data/code.metainfo.xml.in:416
+#: data/code.metainfo.xml.in:431
msgid ""
"Show an infobar when tab width settings are being overwritten by an "
"EditorConfig file"
msgstr ""
-#: data/code.metainfo.xml.in:417
+#: data/code.metainfo.xml.in:432
msgid ""
"The shortcut for rebuilding the completion word list is now \"Ctrl + |\""
msgstr ""
-#: data/code.metainfo.xml.in:435
+#: data/code.metainfo.xml.in:450
msgid ""
"The current document filename is now shown as the window title in "
"multitasking view"
msgstr ""
-#: data/code.metainfo.xml.in:436
+#: data/code.metainfo.xml.in:451
msgid "Hidden folders are now shown in the project sidebar"
msgstr ""
-#: data/code.metainfo.xml.in:437
+#: data/code.metainfo.xml.in:452
msgid ""
"The currently selected result and the number of results is displayed while "
"searching"
msgstr ""
-#: data/code.metainfo.xml.in:438
+#: data/code.metainfo.xml.in:453
msgid "The search bar now has a regular expression mode"
msgstr ""
-#: data/code.metainfo.xml.in:440
+#: data/code.metainfo.xml.in:455
msgid "Fixes:"
msgstr ""
-#: data/code.metainfo.xml.in:442
+#: data/code.metainfo.xml.in:457
msgid ""
"It is now possible to change Git branch with untracked files present in a "
"project"
msgstr ""
-#: data/code.metainfo.xml.in:443
+#: data/code.metainfo.xml.in:458
msgid "Crashes are prevented while searching in large projects"
msgstr ""
-#: data/code.metainfo.xml.in:444
+#: data/code.metainfo.xml.in:459
msgid ""
"The correct document is now focused after opening Code from an external "
"program"
msgstr ""
-#: data/code.metainfo.xml.in:445
+#: data/code.metainfo.xml.in:460
msgid ""
"Line duplication is now actioned correctly if there is no selection present"
msgstr ""
-#: data/code.metainfo.xml.in:446
+#: data/code.metainfo.xml.in:461
msgid "Code no longer crashes when asked to open an unknown URI format"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 9b1cd20f5f..3b6fdfb5ea 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-09-10 14:54+0000\n"
"Last-Translator: Daniel Foré \n"
"Language-Team: Persian \n"
@@ -43,77 +43,77 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "کد"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "کد"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "پنهان کردن نوار جستجو"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "باز کردن پرونده"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "پنهان کردن نوار جستجو"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "قالب پروژه ها"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "همه ی فایلها"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "پروندههای متنی"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "باز کردن چند پرونده"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "باز کردن"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -121,29 +121,29 @@ msgstr "باز کردن"
msgid "Cancel"
msgstr "انصراف"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -894,57 +894,57 @@ msgstr "پنجره جدید"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "دندانهگذاری خودکار:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "قرار دادن فاصله به جای تب:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "عرض هر تب:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "رفتن به خط:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "نمایش شماره خطوط:"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ff.po b/po/ff.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/fi.po b/po/fi.po
index 6a2ae94468..0addd4026d 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-03-22 15:55+0000\n"
"Last-Translator: Jiri Grönroos \n"
"Language-Team: Finnish \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/fo.po b/po/fo.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/fr.po b/po/fr.po
index 5dabf55af1..c978491c73 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-02-09 14:43+0000\n"
"Last-Translator: Nathan \n"
"Language-Team: French "
msgid "[FILE…]"
msgstr "[FICHIER…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Code (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Cacher la barre de recherche"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Rechercher sur la page…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "Masquer la barre latérale des projets"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "Afficher la barre latérale des projets"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Masquer le contour des symboles"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Afficher le contour des symboles"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Cacher le terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Afficher le terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Tous les fichiers"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Fichiers texte"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Ouvrez des fichiers"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Ouvrir"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Ouvrir"
msgid "Cancel"
msgstr "Annuler"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Ouvrir"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Annuler"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Clonage terminé"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Le clone a bien été créé dans %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "Impossible de cloner %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Réessayer"
@@ -857,50 +857,50 @@ msgstr "Ouvrir dans une nouvelle fenêtre"
msgid "Duplicate Tab"
msgstr "Dupliquer l'onglet"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Certains paramètres sont définis par le fichier EditorConfig"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Indentation automatique"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Insérer des espaces au lieu des tabulations"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Largeur des tabulations"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtrer les langages"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Texte brut"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "Langage du document"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Aller à la ligne :"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Numéro de ligne"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d espace"
msgstr[1] "%d espaces"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/fr_CA.po b/po/fr_CA.po
index 7704b1b6b7..422b55546f 100644
--- a/po/fr_CA.po
+++ b/po/fr_CA.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-09-10 14:54+0000\n"
"Last-Translator: Cleiton Floss \n"
"Language-Team: French (Canada) \n"
"Language-Team: Frisian \n"
@@ -42,76 +42,76 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Sykbalke ferbergje"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "In bestân iepenje"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Sykbalke ferbergje"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "Projektsjabloanen"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "In pear bestannen iepenje"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Iepenje"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -119,29 +119,29 @@ msgstr "Iepenje"
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -851,50 +851,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ga.po b/po/ga.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/gd.po b/po/gd.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/gl.po b/po/gl.po
index 8f1efb0df8..400d6160a9 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-02-25 20:09+0000\n"
"Last-Translator: Daniel R. \n"
"Language-Team: Galician \n"
@@ -43,80 +43,80 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Code"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Code"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Agochar a barra de buscas"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "Abrir un cartafol"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Agochar a barra de buscas"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Mostrar vista previa"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "Simbolos"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Ocultar Terminal"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Mostrar Terminal"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Todos os ficheiros"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Ficheiros de texto"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Abrir algúns ficheiros"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Abrir"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -124,29 +124,29 @@ msgstr "Abrir"
msgid "Cancel"
msgstr "Cancelar"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Abrir"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Cancelar"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -926,58 +926,58 @@ msgstr "Nova xanela"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Sangría automática:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Inserir espazos no canto de tabulacións:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Largo do tabulador:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtrar linguaxes"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Texto plano"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Filtrar linguaxes"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Ir á liña:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Número de liña"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d Espacio"
msgstr[1] "%d Espacios"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/gn.po b/po/gn.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/gu.po b/po/gu.po
index fa01ba693d..a837d2b2cc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:37+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Gujarati \n"
@@ -42,76 +42,76 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "શોધ બારને છુપાવો"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "ફાઈલ ખોલો"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "શોધ બારને છુપાવો"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Project templates"
msgid "Show Projects Sidebar"
msgstr "પ્રોજેક્ટના ટેમ્પલેટ્સ"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "બધી ફાઇલો"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "ખોલો"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -119,29 +119,29 @@ msgstr "ખોલો"
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -871,57 +871,57 @@ msgstr "નવી વિંડો"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "સ્વયંસંચાલિત ઇન્ડેનટેસન"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "ટેબ્સને બદલે જગ્યાઓ સામેલ કરો"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "ટૅબની પહોળાઈ"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "લીટી નંબર બતાવો"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/gv.po b/po/gv.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ha.po b/po/ha.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/he.po b/po/he.po
index 13f0ad96b8..a7846fc725 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2025-11-13 07:55+0000\n"
"Last-Translator: Yaron Shahrabani \n"
"Language-Team: Hebrew "
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "קוד (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "קוד"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "הסתרת סרגל החיפוש"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "איתור בעמוד…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "הסתרת סרגל המיזמים"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "הצגת סרגל המיזמים"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "הסתרת קווי מתאר של סמלים"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "הצגת קווי מתאר של סמלים"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "הסתרת המסוף"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "הצגת המסוף"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "כל הקבצים"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "קבצי טקסט"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "פתיחת מספר קבצים"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "פתיחה"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "פתיחה"
msgid "Cancel"
msgstr "ביטול"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_פתיחה"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_ביטול"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "השכפול הושלם"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "השכפול נוצר בהצלחה תחת %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "לא ניתן לשכפל את %s"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "לנסות שוב"
@@ -837,50 +837,50 @@ msgstr "פתיחה בחלון חדש"
msgid "Duplicate Tab"
msgstr "שכפול לשונית"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "חלק מההגדרות הוגדרו על ידי קובץ הגדרות עורך (EditorConfig)"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "הזחה אוטומטית"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "הוספת רווחים במקום טאבים"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "רוחב טאב"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "סינון שפות"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "טקסט פשוט"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "שפת המסמך"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "מעבר לשורה:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "שורה מספר"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "רווח אחד"
msgstr[1] "%d רווחים"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/hi.po b/po/hi.po
index 8bbf48becc..cd6d33c1a1 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2019-05-10 06:32+0000\n"
"Last-Translator: Prachi Joshi \n"
"Language-Team: Hindi \n"
@@ -43,80 +43,80 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "कोड"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "कोड"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "सर्च बार छुपायें"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open a folder"
msgid "Find on Page…"
msgstr "एक फ़ोल्डर खोलें"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "सर्च बार छुपायें"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "पूर्वावलोकन दिखाएँ"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "Symbols"
msgid "Show Symbol Outline"
msgstr "संकेत"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "टर्मिनल छिपाएं"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "टर्मिनल दिखाएँ"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "सभी फाइलें"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "टेक्स्ट फाइलें"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "कुछ फ़ाइल खोलें"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "खोलें"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -124,29 +124,29 @@ msgstr "खोलें"
msgid "Cancel"
msgstr "रद्द करें"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "खोलें (_O)"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "रद्द करें (_C)"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -915,58 +915,58 @@ msgstr "नया विंडो"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "स्वचालित हाशिया:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "टैब की जगह रिक्ति डालें:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "टैब चौड़ाई :"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "भाषाएं फ़िल्टर करें"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "सादा पाठ"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "भाषाएं फ़िल्टर करें"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "पंक्ति पर जायें:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "पंक्ति नंबर"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d स्पेस"
msgstr[1] "%d स्पेस"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ho.po b/po/ho.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/hr.po b/po/hr.po
index a7a45cd07d..c3379d3f80 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2017-08-16 12:16+0000\n"
"Last-Translator: gogogogi \n"
"Language-Team: Croatian \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/hu.po b/po/hu.po
index 0cba5a5d94..fa681f1fa9 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2025-11-21 14:55+0000\n"
"Last-Translator: TomiOhl \n"
"Language-Team: Hungarian "
msgid "[FILE…]"
msgstr "[FILE…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "Kód (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Kód"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "A keresősáv elrejtése"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "Keresés az oldalon…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "A Projektek oldalsáv elrejtése"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "A Projektek oldalsáv megjelenítése"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "Szimbólumkiemelés elrejtése"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "Szimbólumkiemelés megjelenítése"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Terminál elrejtése"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Terminál megjelenítése"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Minden fájl"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Szövegfájlok"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Nyisson meg fájlokat"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Megnyitás"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "Megnyitás"
msgid "Cancel"
msgstr "Mégse"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "Meg_nyitás"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Mégse"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "Klónozás befejezve"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "Klón sikeresen létrehozva itt: %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "Nem sikerült a(z) %s klónozása"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "Újra"
@@ -849,50 +849,50 @@ msgstr "Megnyitás új ablakban"
msgid "Duplicate Tab"
msgstr "Lap megkettőzése"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "Néhány beállítás az EditorConfig fájl által lett beállítva"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "Automatikus behúzás"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "Szóközök beillesztése tabulátorok helyett"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "Tabulátorok szélessége"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Nyelvek szűrése"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Egyszerű szöveg"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "A dokumentum nyelve"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Ugrás erre a sorra:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Sorszám"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d szóköz"
msgstr[1] "%d szóköz"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/hy.po b/po/hy.po
index 167e90e85c..3f351bec5f 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:38+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -823,50 +823,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/hz.po b/po/hz.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ia.po b/po/ia.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/id.po b/po/id.po
index 7cb67f3489..5174f5eec7 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -38,71 +38,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -110,29 +110,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -815,50 +815,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ii.po b/po/ii.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ik.po b/po/ik.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/io.elementary.code.pot b/po/io.elementary.code.pot
index 4b39e95427..c6e19c2bfc 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -42,71 +42,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -114,29 +114,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -824,50 +824,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/io.po b/po/io.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/is.po b/po/is.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/it.po b/po/it.po
index 53e632f14c..2ed9cdfb03 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2020-10-23 17:15+0000\n"
"Last-Translator: Fabio Zaramella \n"
"Language-Team: Italian \n"
@@ -43,80 +43,80 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "Codice"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "Codice"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Nascondi la barra di ricerca"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Open Project Folder…"
msgid "Find on Page…"
msgstr "Apri cartella progetto…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Nascondi la barra di ricerca"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "Mostra anteprima"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "Nessun simbolo trovato"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "Nascondi terminale"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "Mostra terminale"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Tutti i file"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "File di testo"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "Apri alcuni file"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Apri"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -124,29 +124,29 @@ msgstr "Apri"
msgid "Cancel"
msgstr "Annulla"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "_Apri"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_Annulla"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -932,58 +932,58 @@ msgstr "Nuova finestra"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "Capoverso automatico:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "Inserisci spazi invece di tabulazioni:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "Larghezza di tabulazione:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "Filtra i linguaggi"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "Testo semplice"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "Filtra i linguaggi"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "Vai alla linea:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "Numero di riga"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d spazio"
msgstr[1] "%d spazi"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/iu.po b/po/iu.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ja.po b/po/ja.po
index 547fa19c7a..009be8d78b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2026-07-19 13:01+0000\n"
"Last-Translator: Ryo Nakano \n"
"Language-Team: Japanese "
msgid "[FILE…]"
msgstr "[ファイル…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "コード (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "コード"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "検索バーを非表示"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "ページ内を検索…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "プロジェクトサイドバーを非表示"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "プロジェクトサイドバーを表示"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "シンボルアウトラインを非表示"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "シンボルアウトラインを表示"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "ターミナルを非表示"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "ターミナルを表示"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "すべてのファイル"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "テキストファイル"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "複数のファイルを開く"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "開く"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -116,29 +116,29 @@ msgstr "開く"
msgid "Cancel"
msgstr "キャンセル"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "開く(_O)"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "キャンセル(_C)"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr "クローンが完了しました"
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr "クローンを次の場所に作成しました: %s"
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr "%s をクローンできません"
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr "再試行"
@@ -836,49 +836,49 @@ msgstr "新しいウィンドウで開く"
msgid "Duplicate Tab"
msgstr "タブを複製"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "一部は EditorConfig ファイルによって設定されています"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "自動インデント"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "タブの代わりにスペースを挿入"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "タブ幅"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "言語をフィルター"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "プレーンテキスト"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr "言語"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "行へ移動:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "行番号"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d スペース"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/jv.po b/po/jv.po
index 70f71c5ce2..823b9e27f4 100644
--- a/po/jv.po
+++ b/po/jv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: scratch\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:38+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Javanese \n"
@@ -42,74 +42,74 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "Umpetke papan golek"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "Bukak berkas"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "Umpetke papan golek"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "Kabeh berkas"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "Berkas aksara"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "Bukak"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -117,29 +117,29 @@ msgstr "Bukak"
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -845,50 +845,50 @@ msgstr "jendela baru"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ka.po b/po/ka.po
index 7cec01c6db..4c2c6affb4 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
-"PO-Revision-Date: 2026-04-19 00:13+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
+"PO-Revision-Date: 2026-07-23 07:01+0000\n"
"Last-Translator: NorwayFun \n"
"Language-Team: Georgian \n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.11.4\n"
+"X-Generator: Weblate 2026.5\n"
"X-Launchpad-Export-Date: 2017-05-03 06:01+0000\n"
#: src/Application.vala:41 src/Widgets/DocumentView.vala:100
@@ -33,77 +33,77 @@ msgstr ""
#: src/Application.vala:44
msgid ""
-msgstr ""
+msgstr ""
#: src/Application.vala:45
msgid "[FILE…]"
msgstr "[ფაილი...]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr "კოდი (%s)"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "კოდი"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "ძებნის პანელის დამალვა"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr "გვერდზე ძებნა…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr "პროექტების პანელის დამალვა"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr "პროექტების პანელის ჩვენება"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr "სიმბოლოების მონახაზის დამალვა"
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr "სიმბოლოების მონახაზის ჩვენება"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "ტერმინალის დამალვა"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "ტერმინალის ჩვენება"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr "%s - %s"
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "ყველა ფაილი"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "ტექსტური ფაილები"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "გახსენით რამდენიმე ფაილი"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "გახსნა"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -111,31 +111,31 @@ msgstr "გახსნა"
msgid "Cancel"
msgstr "გაუქმება"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "გახ_სნა"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "_გაუქმება"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
-msgstr ""
+msgstr "თავიდან ცდა"
#. /TRANSLATORS '%s' represents the quoted basename of a uri to be opened with the default app
#: src/Utils.vala:212
@@ -160,17 +160,15 @@ msgstr ""
#: src/Dialogs/CloneRepositoryDialog.vala:69
msgid "https://example.com/username/projectname.git"
-msgstr ""
+msgstr "https://example.com/username/projectname.git"
#: src/Dialogs/CloneRepositoryDialog.vala:93
msgid "Select folder where the cloned repository will be created"
msgstr ""
#: src/Dialogs/CloneRepositoryDialog.vala:96
-#, fuzzy
-#| msgid "Select Format"
msgid "Select"
-msgstr "აირჩიეთ ფორმატი"
+msgstr "არჩევა"
#: src/Dialogs/CloneRepositoryDialog.vala:118
msgid "Repository URL"
@@ -178,7 +176,7 @@ msgstr ""
#: src/Dialogs/CloneRepositoryDialog.vala:119
msgid "Location"
-msgstr ""
+msgstr "მდებარეობა"
#: src/Dialogs/CloneRepositoryDialog.vala:120
msgid "Name of Clone"
@@ -275,7 +273,7 @@ msgstr "პროექტები"
#: src/Dialogs/PreferencesDialog.vala:83
msgid "None"
-msgstr ""
+msgstr "არცერთი"
#: src/Dialogs/PreferencesDialog.vala:84
msgid "Current Line"
@@ -283,7 +281,7 @@ msgstr "მიმდინარე ხაზი"
#: src/Dialogs/PreferencesDialog.vala:85
msgid "All"
-msgstr ""
+msgstr "ყველა"
#: src/Dialogs/PreferencesDialog.vala:101
msgid "Whitespace visible when not selected"
@@ -298,8 +296,6 @@ msgid "Highlight matching brackets"
msgstr "შესაბამისი ბრჭყალების გამოკვეთა"
#: src/Dialogs/PreferencesDialog.vala:118
-#, fuzzy
-#| msgid "Syntax Highlighting"
msgid "Syntax highlighting"
msgstr "სინტაქსის გამოკვეთა"
@@ -388,10 +384,8 @@ msgid "Close Parent Project"
msgstr ""
#: src/Dialogs/CloseProjectsConfirmationDialog.vala:63
-#, fuzzy
-#| msgid "Don't Restore"
msgid "Don't Open"
-msgstr "არ აღადგინო"
+msgstr "არ გახსნა"
#: src/Dialogs/OverwriteUncommittedConfirmationDialog.vala:40
msgid "There are uncommitted changes in the current branch"
@@ -445,10 +439,8 @@ msgid "Find in Folder…"
msgstr "საქაღალდეში ძებნა…"
#: src/FolderManager/FolderItem.vala:177
-#, fuzzy
-#| msgid "Terminal"
msgid "Terminal Pane"
-msgstr "ტერმინალი"
+msgstr "ტერმინალის პანელი"
#: src/FolderManager/FolderItem.vala:212
msgid "Folder"
@@ -483,10 +475,8 @@ msgid "new file"
msgstr "ახალი ფაილი"
#: src/FolderManager/ProjectFolderItem.vala:135
-#, fuzzy
-#| msgid "Active Git project: %s"
msgid "Set as Active Project"
-msgstr "აქტიური Git პროექტი: %s"
+msgstr "დაყენება აქტიურ პროექტად"
#: src/FolderManager/ProjectFolderItem.vala:143
msgid "Open in Terminal Pane"
@@ -631,10 +621,11 @@ msgstr ""
"ცვლილებები გააჩნია."
#: src/Services/Document.vala:980
-#, fuzzy, c-format
-#| msgid "File “%s” was deleted and there are unsaved changes."
+#, c-format
msgid "File “%s” was deleted, renamed or moved and there are unsaved changes."
-msgstr "ფაილი \"%s\" წაშლილია და მას შეუნახავი ცვლილებები გააჩნია."
+msgstr ""
+"ფაილი \"%s\" წაშლილია, სახელი აქვს გადარქმეული, ან გადატანილია და არსებობს "
+"შეუნახავი ცვლილებები."
#. Check external changes after loading
#. The file has become unwritable while changes are pending
@@ -718,10 +709,8 @@ msgid "Symbols"
msgstr "სიმბოლოები"
#: src/SymbolPane/Vala/ValaSymbolOutline.vala:122
-#, fuzzy
-#| msgid "Symbols"
msgid "Too Many Symbols"
-msgstr "სიმბოლოები"
+msgstr "მეტისმეტად ბევრი სიმბოლო"
#: src/SymbolPane/Vala/ValaSymbolOutline.vala:123
#, c-format
@@ -737,59 +726,55 @@ msgstr ""
#: src/SymbolPane/SymbolOutline.vala:35
msgid "Class"
-msgstr ""
+msgstr "კლასი"
#: src/SymbolPane/SymbolOutline.vala:37
msgid "Property"
-msgstr ""
+msgstr "თვისება"
#: src/SymbolPane/SymbolOutline.vala:39
msgid "Signal"
-msgstr ""
+msgstr "სიგნალი"
#: src/SymbolPane/SymbolOutline.vala:41
msgid "Method"
-msgstr ""
+msgstr "მეთოდი"
#: src/SymbolPane/SymbolOutline.vala:43
msgid "Struct"
-msgstr ""
+msgstr "სტრუქტურა"
#: src/SymbolPane/SymbolOutline.vala:45
msgid "Enum"
-msgstr ""
+msgstr "ჩამონათვალი"
#: src/SymbolPane/SymbolOutline.vala:47
msgid "Constant"
-msgstr ""
+msgstr "კონსტანტა"
#: src/SymbolPane/SymbolOutline.vala:49
msgid "Constructor"
-msgstr ""
+msgstr "კონსტრუქტორი"
#: src/SymbolPane/SymbolOutline.vala:53
msgid "Namespace"
-msgstr ""
+msgstr "სახელების სივრცე"
#: src/SymbolPane/SymbolOutline.vala:55
msgid "Other"
msgstr "სხვები"
#: src/SymbolPane/SymbolOutline.vala:131
-#, fuzzy
-#| msgid "Symbols"
msgid "Find Symbol"
-msgstr "სიმბოლოები"
+msgstr "სიმბოლოს ძებნა"
#: src/SymbolPane/SymbolOutline.vala:140
msgid "Filter symbol type"
msgstr ""
#: src/SymbolPane/SymbolOutline.vala:160
-#, fuzzy
-#| msgid "Select Format"
msgid "Select All"
-msgstr "აირჩიეთ ფორმატი"
+msgstr "ყველას მონიშვნა"
#: src/SymbolPane/SymbolOutline.vala:166
msgid "Deselect All"
@@ -800,8 +785,7 @@ msgid "No Project Selected"
msgstr "პროექტი არჩეული არაა"
#: src/Widgets/ChooseProjectButton.vala:10
-#, fuzzy, c-format
-#| msgid "Active Git project: %s"
+#, c-format
msgid "Active Git Project: %s"
msgstr "აქტიური Git პროექტი: %s"
@@ -846,52 +830,50 @@ msgstr "გახსნა ახალი ფანჯარაში"
msgid "Duplicate Tab"
msgstr "ჩანართის დუბლირება"
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr "ზოგიერთი პარამეტრი EditorConfig ფაილის მიერაა დაყენებული"
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr "ავტომატური სწორება"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr "ტაბულაციის მაგიერ გამოტოვებების ჩასმა"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr "ტაბულაციის სიგანე"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "ენების გაფილტვრა"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "უბრალო ტექსტი"
-#: src/Widgets/FormatBar.vala:143
-#, fuzzy
-#| msgid "Filter languages"
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
-msgstr "ენების გაფილტვრა"
+msgstr "დოკუმენტის ენა"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "ხაზზე გადასვლა:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "ხაზის ნომერი"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d ადგილი"
msgstr[1] "%d ადგილი"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
@@ -940,15 +922,15 @@ msgstr "მენიუ"
#: src/Widgets/HeaderBar.vala:387
msgid "Light"
-msgstr ""
+msgstr "ღია"
#: src/Widgets/HeaderBar.vala:390
msgid "Dark"
-msgstr ""
+msgstr "მუქი"
#: src/Widgets/HeaderBar.vala:393
msgid "Contrast"
-msgstr ""
+msgstr "კონტრასტი"
#: src/Widgets/Sidebar.vala:54
msgid "Cloning complete"
@@ -1036,28 +1018,20 @@ msgid "no results"
msgstr "შედეგების გარეშე"
#: src/Widgets/SourceView.vala:204
-#, fuzzy
-#| msgid "Sort Selected Lines"
msgid "Sort Lines"
-msgstr "მონიშნული ხაზების დალაგება"
+msgstr "ხაზების დალაგება"
#: src/Widgets/SourceView.vala:205
-#, fuzzy
-#| msgid "Current Line"
msgid "Mark Line"
-msgstr "მიმდინარე ხაზი"
+msgstr "ხაზის დანიშვნა"
#: src/Widgets/SourceView.vala:206
-#, fuzzy
-#| msgid "Previous Tab"
msgid "Previous Mark"
-msgstr "წინა ჩანართი"
+msgstr "წინა ნიშანი"
#: src/Widgets/SourceView.vala:207
-#, fuzzy
-#| msgid "Next Tab"
msgid "Next Mark"
-msgstr "შემდეგი ჩანართი"
+msgstr "შემდეგი ნიშანი"
#: src/Widgets/SourceView.vala:208
msgid "Toggle Comment"
diff --git a/po/kg.po b/po/kg.po
index 907577cc4e..b7330b5daa 100644
--- a/po/kg.po
+++ b/po/kg.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ki.po b/po/ki.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kj.po b/po/kj.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kk.po b/po/kk.po
index 35f7689933..6899f386c4 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2016-07-08 22:28+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -824,50 +824,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kl.po b/po/kl.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/km.po b/po/km.po
index d699873a33..d61582280e 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-21 13:37+0000\n"
"Last-Translator: Mario Guerriero \n"
"Language-Team: Khmer \n"
@@ -42,74 +42,74 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "លាក់របារស្វែងរក"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
msgid "Find on Page…"
msgstr "បើកឯកសារ"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "លាក់របារស្វែងរក"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "ឯកសារទាំងអស់"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "ឯកសារអត្ថបទ"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "បើក"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -117,29 +117,29 @@ msgstr "បើក"
msgid "Cancel"
msgstr "បោះបង់"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -878,57 +878,57 @@ msgstr "បង្អួចថ្មី"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "ការចូលបន្ទាត់ស្វ័យប្រវត្តិ ៖"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "បញ្ចូលចន្លោះជំនួសថេប ៖"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "ទទឹងថេប ៖"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "ទៅដល់បន្ទាប់ ៖"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
#, fuzzy
msgid "Line number"
msgstr "បង្ហាញលេខរបស់បន្ទាត់ ៖"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, fuzzy, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kn.po b/po/kn.po
index 4031aa9402..a44eb72126 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+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"
@@ -43,80 +43,80 @@ msgstr ""
msgid "[FILE…]"
msgstr "[파일…]"
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, fuzzy, c-format
#| msgid "Code"
msgid "Code (%s)"
msgstr "코드"
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr "코드"
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr "검색 바 숨기기"
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
#, fuzzy
#| msgid "Find in Project…"
msgid "Find on Page…"
msgstr "프로젝트에서 찾기…"
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
#, fuzzy
#| msgid "Hide search bar"
msgid "Hide Projects Sidebar"
msgstr "검색 바 숨기기"
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
#, fuzzy
#| msgid "Show Preview"
msgid "Show Projects Sidebar"
msgstr "미리 보기"
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
#, fuzzy
#| msgid "No Symbols Found"
msgid "Show Symbol Outline"
msgstr "심볼이 없습니다"
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr "터미널 숨기기"
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr "터미널 보이기"
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr "모든 파일"
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr "텍스트 파일"
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr "파일 열기"
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr "열기"
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -124,29 +124,29 @@ msgstr "열기"
msgid "Cancel"
msgstr "취소"
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr "열기(_O)"
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr "취소(_C)"
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -916,57 +916,57 @@ msgstr "새 창"
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
#, fuzzy
#| msgid "Automatic indentation:"
msgid "Automatic Indentation"
msgstr "자동 들여쓰기:"
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
#, fuzzy
#| msgid "Insert spaces instead of tabs:"
msgid "Insert Spaces Instead Of Tabs"
msgstr "탭 대신 빈칸 표시:"
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
#, fuzzy
#| msgid "Tab width:"
msgid "Tab width"
msgstr "탭 너비:"
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr "언어 필터링"
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr "일반 텍스트"
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
#, fuzzy
#| msgid "Filter languages"
msgid "Document language"
msgstr "언어 필터링"
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr "줄로 이동:"
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr "줄 번호"
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] "%d개 빈 칸"
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kr.po b/po/kr.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ks.po b/po/ks.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ku.po b/po/ku.po
index 8d6b2cffe9..ed903f962f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2018-06-01 00:06+0000\n"
"Last-Translator: Rokar \n"
"Language-Team: Kurdish \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/kw.po b/po/kw.po
index 35eff586ed..36446f697f 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/ky.po b/po/ky.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/la.po b/po/la.po
index 907577cc4e..b7330b5daa 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2015-12-18 20:01+0000\n"
"Last-Translator: Launchpad Translations Administrators \n"
"Language-Team: LANGUAGE \n"
@@ -37,71 +37,71 @@ msgstr ""
msgid "[FILE…]"
msgstr ""
-#: src/MainWindow.vala:254
+#: src/MainWindow.vala:240
#, c-format
msgid "Code (%s)"
msgstr ""
-#: src/MainWindow.vala:256
+#: src/MainWindow.vala:242
msgid "Code"
msgstr ""
-#: src/MainWindow.vala:389
+#: src/MainWindow.vala:370
msgid "Hide search bar"
msgstr ""
-#: src/MainWindow.vala:394 src/Widgets/HeaderBar.vala:117
+#: src/MainWindow.vala:375 src/Widgets/HeaderBar.vala:117
msgid "Find on Page…"
msgstr ""
-#: src/MainWindow.vala:405
+#: src/MainWindow.vala:386
msgid "Hide Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:410
+#: src/MainWindow.vala:391
msgid "Show Projects Sidebar"
msgstr ""
-#: src/MainWindow.vala:419
+#: src/MainWindow.vala:400
msgid "Hide Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:424
+#: src/MainWindow.vala:405
msgid "Show Symbol Outline"
msgstr ""
-#: src/MainWindow.vala:433
+#: src/MainWindow.vala:414
msgid "Hide Terminal"
msgstr ""
-#: src/MainWindow.vala:438 src/Widgets/HeaderBar.vala:190
+#: src/MainWindow.vala:419 src/Widgets/HeaderBar.vala:190
msgid "Show Terminal"
msgstr ""
#. Update MainWindow title
#. / TRANSLATORS: First placeholder is document name, second placeholder is app name
-#: src/MainWindow.vala:619
+#: src/MainWindow.vala:600
#, c-format
msgid "%s - %s"
msgstr ""
-#: src/MainWindow.vala:972 src/Services/Document.vala:723
+#: src/MainWindow.vala:953 src/Services/Document.vala:723
msgid "All files"
msgstr ""
-#: src/MainWindow.vala:976 src/Services/Document.vala:727
+#: src/MainWindow.vala:957 src/Services/Document.vala:727
msgid "Text files"
msgstr ""
-#: src/MainWindow.vala:980
+#: src/MainWindow.vala:961
msgid "Open some files"
msgstr ""
-#: src/MainWindow.vala:983
+#: src/MainWindow.vala:964
msgid "Open"
msgstr ""
-#: src/MainWindow.vala:984 src/Dialogs/CloneRepositoryDialog.vala:58
+#: src/MainWindow.vala:965 src/Dialogs/CloneRepositoryDialog.vala:58
#: src/Dialogs/CloneRepositoryDialog.vala:97
#: src/Dialogs/GlobalSearchDialog.vala:87 src/Services/Document.vala:526
#: src/Services/Document.vala:735 plugins/pastebin/pastebin_dialog.vala:331
@@ -109,29 +109,29 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/MainWindow.vala:1030
+#: src/MainWindow.vala:1011
msgid "_Open"
msgstr ""
-#: src/MainWindow.vala:1031
+#: src/MainWindow.vala:1012
msgid "_Cancel"
msgstr ""
-#: src/MainWindow.vala:1101
+#: src/MainWindow.vala:1082
msgid "Cloning completed"
msgstr ""
-#: src/MainWindow.vala:1102
+#: src/MainWindow.vala:1083
#, c-format
msgid "Clone successfully created in %s"
msgstr ""
-#: src/MainWindow.vala:1110
+#: src/MainWindow.vala:1091
#, c-format
msgid "Unable to clone %s"
msgstr ""
-#: src/MainWindow.vala:1118
+#: src/MainWindow.vala:1099
msgid "Retry"
msgstr ""
@@ -819,50 +819,50 @@ msgstr ""
msgid "Duplicate Tab"
msgstr ""
-#: src/Widgets/FormatBar.vala:47
+#: src/Widgets/FormatBar.vala:48
msgid "Some settings set by EditorConfig file"
msgstr ""
-#: src/Widgets/FormatBar.vala:50
+#: src/Widgets/FormatBar.vala:51
msgid "Automatic Indentation"
msgstr ""
-#: src/Widgets/FormatBar.vala:52
+#: src/Widgets/FormatBar.vala:53
msgid "Insert Spaces Instead Of Tabs"
msgstr ""
-#: src/Widgets/FormatBar.vala:56
+#: src/Widgets/FormatBar.vala:57
msgid "Tab width"
msgstr ""
-#: src/Widgets/FormatBar.vala:94
+#: src/Widgets/FormatBar.vala:97
msgid "Filter languages"
msgstr ""
-#: src/Widgets/FormatBar.vala:116
+#: src/Widgets/FormatBar.vala:119
msgid "Plain Text"
msgstr ""
-#: src/Widgets/FormatBar.vala:143
+#: src/Widgets/FormatBar.vala:148
msgid "Document language"
msgstr ""
-#: src/Widgets/FormatBar.vala:148
+#: src/Widgets/FormatBar.vala:153
msgid "Go To Line:"
msgstr ""
-#: src/Widgets/FormatBar.vala:175
+#: src/Widgets/FormatBar.vala:182
msgid "Line number"
msgstr ""
-#: src/Widgets/FormatBar.vala:288
+#: src/Widgets/FormatBar.vala:295
#, c-format
msgid "%d Space"
msgid_plural "%d Spaces"
msgstr[0] ""
msgstr[1] ""
-#: src/Widgets/FormatBar.vala:290
+#: src/Widgets/FormatBar.vala:297
#, c-format
msgid "%d Tab"
msgid_plural "%d Tabs"
diff --git a/po/lb.po b/po/lb.po
index fc048f2a65..8703cd323b 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: 2026-07-21 10:12+0000\n"
+"POT-Creation-Date: 2026-08-03 14:41+0000\n"
"PO-Revision-Date: 2017-08-09 15:06+0000\n"
"Last-Translator: Yvo Marques \n"
"Language-Team: Luxembourgish